parent-0.10.0.pom 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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.10.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.10.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>simpleclient_bom</module>
  59. <module>benchmark</module>
  60. </modules>
  61. <properties>
  62. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  63. </properties>
  64. <distributionManagement>
  65. <snapshotRepository>
  66. <id>ossrh</id>
  67. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  68. </snapshotRepository>
  69. <repository>
  70. <id>ossrh</id>
  71. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  72. </repository>
  73. </distributionManagement>
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <artifactId>maven-release-plugin</artifactId>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <version>2.5</version>
  80. <configuration>
  81. <autoVersionSubmodules>true</autoVersionSubmodules>
  82. <useReleaseProfile>false</useReleaseProfile>
  83. <releaseProfiles>release</releaseProfiles>
  84. <goals>deploy</goals>
  85. </configuration>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-deploy-plugin</artifactId>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <version>2.7</version>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.felix</groupId>
  94. <artifactId>maven-bundle-plugin</artifactId>
  95. <version>2.4.0</version>
  96. <extensions>true</extensions>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-surefire-plugin</artifactId>
  101. <version>2.15</version>
  102. </plugin>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-javadoc-plugin</artifactId>
  106. <version>2.8</version>
  107. <configuration>
  108. <encoding>UTF-8</encoding>
  109. <docencoding>UTF-8</docencoding>
  110. <linksource>true</linksource>
  111. <source>8</source>
  112. <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
  113. </configuration>
  114. <executions>
  115. <execution>
  116. <id>generate-javadoc-site-report</id>
  117. <phase>site</phase>
  118. <goals>
  119. <goal>javadoc</goal>
  120. </goals>
  121. </execution>
  122. </executions>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-compiler-plugin</artifactId>
  127. <version>3.8.0</version>
  128. <configuration>
  129. <source>1.6</source>
  130. <target>1.6</target>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. <profiles>
  136. <profile>
  137. <id>release</id>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-gpg-plugin</artifactId>
  143. <version>1.5</version>
  144. <executions>
  145. <execution>
  146. <id>sign-artifacts</id>
  147. <phase>verify</phase>
  148. <goals>
  149. <goal>sign</goal>
  150. </goals>
  151. </execution>
  152. </executions>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-source-plugin</artifactId>
  157. <version>2.2.1</version>
  158. <executions>
  159. <execution>
  160. <id>attach-sources</id>
  161. <goals>
  162. <goal>jar-no-fork</goal>
  163. </goals>
  164. </execution>
  165. </executions>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-javadoc-plugin</artifactId>
  170. <version>2.9.1</version>
  171. <executions>
  172. <execution>
  173. <id>attach-javadocs</id>
  174. <goals>
  175. <goal>jar</goal>
  176. </goals>
  177. </execution>
  178. </executions>
  179. </plugin>
  180. </plugins>
  181. </build>
  182. </profile>
  183. </profiles>
  184. </project>