parent-0.6.0.pom 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <packaging>pom</packaging>
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>io.prometheus</groupId>
  6. <artifactId>parent</artifactId>
  7. <version>0.6.0</version>
  8. <parent>
  9. <groupId>org.sonatype.oss</groupId>
  10. <artifactId>oss-parent</artifactId>
  11. <version>7</version>
  12. </parent>
  13. <name>Prometheus Java Suite</name>
  14. <url>http://github.com/prometheus/client_java</url>
  15. <description>
  16. The Prometheus Java Suite: Client Metrics, Exposition, and Examples
  17. </description>
  18. <licenses>
  19. <license>
  20. <name>The Apache Software License, Version 2.0</name>
  21. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  22. <distribution>repo</distribution>
  23. </license>
  24. </licenses>
  25. <scm>
  26. <connection>scm:git:git@github.com:prometheus/client_java.git</connection>
  27. <developerConnection>scm:git:git@github.com:prometheus/client_java.git</developerConnection>
  28. <url>git@github.com:prometheus/client_java.git</url>
  29. <tag>parent-0.6.0</tag>
  30. </scm>
  31. <developers>
  32. <developer>
  33. <id>mtp</id>
  34. <name>Matt T. Proud</name>
  35. <email>matt.proud@gmail.com</email>
  36. </developer>
  37. </developers>
  38. <modules>
  39. <module>simpleclient</module>
  40. <module>simpleclient_common</module>
  41. <module>simpleclient_caffeine</module>
  42. <module>simpleclient_dropwizard</module>
  43. <module>simpleclient_graphite_bridge</module>
  44. <module>simpleclient_hibernate</module>
  45. <module>simpleclient_guava</module>
  46. <module>simpleclient_hotspot</module>
  47. <module>simpleclient_httpserver</module>
  48. <module>simpleclient_log4j</module>
  49. <module>simpleclient_log4j2</module>
  50. <module>simpleclient_logback</module>
  51. <module>simpleclient_pushgateway</module>
  52. <module>simpleclient_servlet</module>
  53. <module>simpleclient_spring_web</module>
  54. <module>simpleclient_spring_boot</module>
  55. <module>simpleclient_jetty</module>
  56. <module>simpleclient_jetty_jdk8</module>
  57. <module>simpleclient_vertx</module>
  58. <module>benchmark</module>
  59. </modules>
  60. <properties>
  61. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  62. </properties>
  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. <artifactId>maven-release-plugin</artifactId>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <version>2.5</version>
  79. <configuration>
  80. <autoVersionSubmodules>true</autoVersionSubmodules>
  81. <useReleaseProfile>false</useReleaseProfile>
  82. <releaseProfiles>release</releaseProfiles>
  83. <goals>deploy</goals>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-deploy-plugin</artifactId>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <version>2.7</version>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.felix</groupId>
  93. <artifactId>maven-bundle-plugin</artifactId>
  94. <version>2.4.0</version>
  95. <extensions>true</extensions>
  96. </plugin>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-surefire-plugin</artifactId>
  100. <version>2.15</version>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-javadoc-plugin</artifactId>
  105. <version>2.8</version>
  106. <configuration>
  107. <encoding>UTF-8</encoding>
  108. <docencoding>UTF-8</docencoding>
  109. <linksource>true</linksource>
  110. </configuration>
  111. <executions>
  112. <execution>
  113. <id>generate-javadoc-site-report</id>
  114. <phase>site</phase>
  115. <goals>
  116. <goal>javadoc</goal>
  117. </goals>
  118. </execution>
  119. </executions>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-compiler-plugin</artifactId>
  124. <version>3.8.0</version>
  125. <configuration>
  126. <source>1.6</source>
  127. <target>1.6</target>
  128. </configuration>
  129. </plugin>
  130. </plugins>
  131. </build>
  132. <profiles>
  133. <profile>
  134. <id>release</id>
  135. <build>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-gpg-plugin</artifactId>
  140. <version>1.5</version>
  141. <executions>
  142. <execution>
  143. <id>sign-artifacts</id>
  144. <phase>verify</phase>
  145. <goals>
  146. <goal>sign</goal>
  147. </goals>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-source-plugin</artifactId>
  154. <version>2.2.1</version>
  155. <executions>
  156. <execution>
  157. <id>attach-sources</id>
  158. <goals>
  159. <goal>jar-no-fork</goal>
  160. </goals>
  161. </execution>
  162. </executions>
  163. </plugin>
  164. <plugin>
  165. <groupId>org.apache.maven.plugins</groupId>
  166. <artifactId>maven-javadoc-plugin</artifactId>
  167. <version>2.9.1</version>
  168. <executions>
  169. <execution>
  170. <id>attach-javadocs</id>
  171. <goals>
  172. <goal>jar</goal>
  173. </goals>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. </profile>
  180. </profiles>
  181. </project>