pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>com.jonlandrum</groupId>
  7. <artifactId>collections</artifactId>
  8. <version>1.0.1</version>
  9. <packaging>jar</packaging>
  10. <name>${project.groupId}:${project.artifactId}</name>
  11. <description>A data structures library.</description>
  12. <url>http://jonlandrum.com/collections/</url>
  13. <inceptionYear>2017</inceptionYear>
  14. <licenses>
  15. <license>
  16. <name>GNU Affero General Public License, Version 3.0</name>
  17. <url>https://www.gnu.org/licenses/agpl-3.0.en.html</url>
  18. </license>
  19. </licenses>
  20. <developers>
  21. <developer>
  22. <id>jonlandrum</id>
  23. <name>Jonathan E. Landrum</name>
  24. <email>me@jonlandrum.com</email>
  25. <url>http://jonlandrum.com/</url>
  26. </developer>
  27. </developers>
  28. <scm>
  29. <connection>scm:git:git://github.com/jonlandrum/collections.git</connection>
  30. <developerConnection>scm:git:git://github.com/jonlandrum/collections.git</developerConnection>
  31. <url>https://github.com/jonlandrum/collections/tree/master/</url>
  32. </scm>
  33. <issueManagement>
  34. <system>GitHub</system>
  35. <url>https://github.com/jonlandrum/collections/issues</url>
  36. </issueManagement>
  37. <properties>
  38. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  39. </properties>
  40. <dependencies>
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <version>4.12</version>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-release-plugin</artifactId>
  50. <version>2.5.3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-repository-plugin</artifactId>
  55. <version>2.4</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.codehaus.mojo</groupId>
  59. <artifactId>cobertura-maven-plugin</artifactId>
  60. <version>2.7</version>
  61. </dependency>
  62. </dependencies>
  63. <distributionManagement>
  64. <snapshotRepository>
  65. <id>ossrh</id>
  66. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  67. </snapshotRepository>
  68. <repository>
  69. <id>ossrh</id>
  70. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  71. </repository>
  72. </distributionManagement>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>3.6.1</version>
  79. <configuration>
  80. <source>1.7</source>
  81. <target>1.7</target>
  82. </configuration>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-gpg-plugin</artifactId>
  87. <version>1.6</version>
  88. <executions>
  89. <execution>
  90. <id>sign-artifacts</id>
  91. <phase>verify</phase>
  92. <goals>
  93. <goal>sign</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-javadoc-plugin</artifactId>
  101. <version>2.10.4</version>
  102. <executions>
  103. <execution>
  104. <id>attach-javadocs</id>
  105. <goals>
  106. <goal>jar</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-release-plugin</artifactId>
  114. <configuration>
  115. <tagNameFormat>v@{project.version}</tagNameFormat>
  116. </configuration>
  117. </plugin>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-source-plugin</artifactId>
  121. <version>3.0.1</version>
  122. <executions>
  123. <execution>
  124. <id>attach-sources</id>
  125. <goals>
  126. <goal>jar-no-fork</goal>
  127. </goals>
  128. </execution>
  129. </executions>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.codehaus.mojo</groupId>
  133. <artifactId>cobertura-maven-plugin</artifactId>
  134. <version>2.7</version>
  135. <configuration>
  136. <formats>
  137. <format>html</format>
  138. <format>xml</format>
  139. </formats>
  140. <check />
  141. </configuration>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.sonatype.plugins</groupId>
  145. <artifactId>nexus-staging-maven-plugin</artifactId>
  146. <version>1.6.7</version>
  147. <extensions>true</extensions>
  148. <configuration>
  149. <serverId>ossrh</serverId>
  150. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  151. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>