pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>pl.wojciechkarpiel</groupId>
  7. <artifactId>jhou</artifactId>
  8. <version>0.10</version>
  9. <packaging>jar</packaging>
  10. <name>${project.groupId}:${project.artifactId}</name>
  11. <description>Higher-order unification library for JVM</description>
  12. <url>https://github.com/WojciechKarpiel/jhou</url>
  13. <licenses>
  14. <license>
  15. <name>MIT License</name>
  16. <url>https://www.opensource.org/licenses/mit-license.php</url>
  17. </license>
  18. </licenses>
  19. <developers>
  20. <developer>
  21. <name>Wojciech Karpiel</name>
  22. <email>w.karpiel@o2.pl</email>
  23. <organization>WojciechKarpiel</organization>
  24. <organizationUrl>https://www.wojciechkarpiel.pl</organizationUrl>
  25. </developer>
  26. </developers>
  27. <scm>
  28. <connection>scm:git:git://github.com/WojciechKarpiel/jhou.git</connection>
  29. <developerConnection>scm:git:ssh://github.com:WojciechKarpiel/jhou.git</developerConnection>
  30. <url>https://github.com/WojciechKarpiel/jhou</url>
  31. </scm>
  32. <properties>
  33. <maven.compiler.source>8</maven.compiler.source>
  34. <maven.compiler.target>8</maven.compiler.target>
  35. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  36. </properties>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.junit.jupiter</groupId>
  40. <artifactId>junit-jupiter</artifactId>
  41. <version>5.9.2</version>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. <!-- Stuff below is copypasted from https://central.sonatype.org/publish/publish-maven/ -->
  46. <distributionManagement>
  47. <snapshotRepository>
  48. <id>ossrh</id>
  49. <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
  50. </snapshotRepository>
  51. </distributionManagement>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.sonatype.central</groupId>
  56. <artifactId>central-publishing-maven-plugin</artifactId>
  57. <version>0.3.0</version>
  58. <extensions>true</extensions>
  59. <configuration>
  60. <publishingServerId>central</publishingServerId>
  61. <tokenAuth>true</tokenAuth>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.sonatype.plugins</groupId>
  66. <artifactId>nexus-staging-maven-plugin</artifactId>
  67. <version>1.6.7</version>
  68. <extensions>true</extensions>
  69. <configuration>
  70. <serverId>ossrh</serverId>
  71. <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
  72. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  73. </configuration>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-source-plugin</artifactId>
  78. <version>2.2.1</version>
  79. <executions>
  80. <execution>
  81. <id>attach-sources</id>
  82. <goals>
  83. <goal>jar-no-fork</goal>
  84. </goals>
  85. </execution>
  86. </executions>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-javadoc-plugin</artifactId>
  91. <version>2.9.1</version>
  92. <executions>
  93. <execution>
  94. <id>attach-javadocs</id>
  95. <goals>
  96. <goal>jar</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-gpg-plugin</artifactId>
  104. <version>1.5</version>
  105. <executions>
  106. <execution>
  107. <id>sign-artifacts</id>
  108. <phase>verify</phase>
  109. <goals>
  110. <goal>sign</goal>
  111. </goals>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-release-plugin</artifactId>
  118. <version>2.5.3</version>
  119. <configuration>
  120. <autoVersionSubmodules>true</autoVersionSubmodules>
  121. <useReleaseProfile>false</useReleaseProfile>
  122. <releaseProfiles>release</releaseProfiles>
  123. <goals>deploy</goals>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>