parent-0.16.0.pom 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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.16.0</version>
  8. <name>Prometheus Java Suite</name>
  9. <url>http://github.com/prometheus/client_java</url>
  10. <description>
  11. The Prometheus Java Suite: Client Metrics, Exposition, and Examples
  12. </description>
  13. <licenses>
  14. <license>
  15. <name>The Apache Software License, Version 2.0</name>
  16. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  17. <distribution>repo</distribution>
  18. </license>
  19. </licenses>
  20. <scm>
  21. <connection>scm:git:git@github.com:prometheus/client_java.git</connection>
  22. <developerConnection>scm:git:git@github.com:prometheus/client_java.git</developerConnection>
  23. <url>git@github.com:prometheus/client_java.git</url>
  24. <tag>parent-0.16.0</tag>
  25. </scm>
  26. <developers>
  27. <developer>
  28. <id>mtp</id>
  29. <name>Matt T. Proud</name>
  30. <email>matt.proud@gmail.com</email>
  31. </developer>
  32. </developers>
  33. <modules>
  34. <module>simpleclient</module>
  35. <module>simpleclient_common</module>
  36. <module>simpleclient_caffeine</module>
  37. <module>simpleclient_dropwizard</module>
  38. <module>simpleclient_graphite_bridge</module>
  39. <module>simpleclient_hibernate</module>
  40. <module>simpleclient_guava</module>
  41. <module>simpleclient_hotspot</module>
  42. <module>simpleclient_httpserver</module>
  43. <module>simpleclient_log4j</module>
  44. <module>simpleclient_log4j2</module>
  45. <module>simpleclient_logback</module>
  46. <module>simpleclient_pushgateway</module>
  47. <module>simpleclient_servlet</module>
  48. <module>simpleclient_servlet_common</module>
  49. <module>simpleclient_servlet_jakarta</module>
  50. <module>simpleclient_spring_web</module>
  51. <module>simpleclient_spring_boot</module>
  52. <module>simpleclient_jetty</module>
  53. <module>simpleclient_jetty_jdk8</module>
  54. <module>simpleclient_tracer</module>
  55. <module>simpleclient_vertx</module>
  56. <module>simpleclient_vertx4</module>
  57. <module>simpleclient_bom</module>
  58. <module>benchmarks</module>
  59. <module>integration_tests</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. <pluginManagement>
  76. <plugins>
  77. <!-- Add plugin versions for reproducible builds. Versions for default bindings are taken from -->
  78. <!-- https://github.com/apache/maven/tree/maven-3.8.1/maven-core/src/main/resources/META-INF/plexus -->
  79. <plugin>
  80. <artifactId>maven-install-plugin</artifactId>
  81. <version>2.4</version>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-resources-plugin</artifactId>
  85. <version>2.6</version>
  86. </plugin>
  87. <plugin>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>3.1</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-surefire-plugin</artifactId>
  93. <version>2.12.4</version>
  94. </plugin>
  95. <plugin>
  96. <artifactId>maven-jar-plugin</artifactId>
  97. <version>2.4</version>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-deploy-plugin</artifactId>
  101. <version>2.7</version>
  102. </plugin>
  103. <plugin>
  104. <artifactId>maven-clean-plugin</artifactId>
  105. <version>2.5</version>
  106. </plugin>
  107. <plugin>
  108. <artifactId>maven-site-plugin</artifactId>
  109. <version>3.3</version>
  110. </plugin>
  111. <!-- Plugins with groupId org.apache.maven.plugins that are not part of default bindings. -->
  112. <plugin>
  113. <artifactId>maven-shade-plugin</artifactId>
  114. <version>3.2.4</version>
  115. </plugin>
  116. <plugin>
  117. <artifactId>maven-failsafe-plugin</artifactId>
  118. <version>2.22.2</version>
  119. </plugin>
  120. <plugin>
  121. <artifactId>maven-release-plugin</artifactId>
  122. <version>2.5.3</version>
  123. </plugin>
  124. <plugin>
  125. <artifactId>maven-dependency-plugin</artifactId>
  126. <version>3.1.2</version>
  127. </plugin>
  128. <plugin>
  129. <artifactId>maven-javadoc-plugin</artifactId>
  130. <version>3.3.0</version>
  131. </plugin>
  132. <plugin>
  133. <artifactId>maven-gpg-plugin</artifactId>
  134. <version>3.0.1</version>
  135. </plugin>
  136. <plugin>
  137. <artifactId>maven-source-plugin</artifactId>
  138. <version>3.2.1</version>
  139. </plugin>
  140. <plugin>
  141. <artifactId>maven-enforcer-plugin</artifactId>
  142. <version>1.4.1</version>
  143. </plugin>
  144. </plugins>
  145. </pluginManagement>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-enforcer-plugin</artifactId>
  150. <executions>
  151. <execution>
  152. <id>enforce-plugin-versions</id>
  153. <goals>
  154. <goal>enforce</goal>
  155. </goals>
  156. <configuration>
  157. <rules>
  158. <requirePluginVersions>
  159. <unCheckedPluginList>org.springframework.boot:spring-boot-maven-plugin
  160. </unCheckedPluginList>
  161. </requirePluginVersions>
  162. </rules>
  163. </configuration>
  164. </execution>
  165. </executions>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-release-plugin</artifactId>
  170. <configuration>
  171. <autoVersionSubmodules>true</autoVersionSubmodules>
  172. <useReleaseProfile>false</useReleaseProfile>
  173. <releaseProfiles>release</releaseProfiles>
  174. <goals>deploy</goals>
  175. </configuration>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-deploy-plugin</artifactId>
  180. </plugin>
  181. <plugin>
  182. <groupId>org.apache.felix</groupId>
  183. <artifactId>maven-bundle-plugin</artifactId>
  184. <version>2.4.0</version>
  185. <extensions>true</extensions>
  186. </plugin>
  187. <plugin>
  188. <groupId>org.apache.maven.plugins</groupId>
  189. <artifactId>maven-surefire-plugin</artifactId>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.apache.maven.plugins</groupId>
  193. <artifactId>maven-javadoc-plugin</artifactId>
  194. <configuration>
  195. <encoding>UTF-8</encoding>
  196. <docencoding>UTF-8</docencoding>
  197. <linksource>true</linksource>
  198. <source>8</source>
  199. <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
  200. </configuration>
  201. <executions>
  202. <execution>
  203. <id>generate-javadoc-site-report</id>
  204. <phase>site</phase>
  205. <goals>
  206. <goal>aggregate</goal>
  207. </goals>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. <plugin>
  212. <groupId>org.apache.maven.plugins</groupId>
  213. <artifactId>maven-compiler-plugin</artifactId>
  214. <configuration>
  215. <source>1.6</source>
  216. <target>1.6</target>
  217. </configuration>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.codehaus.mojo</groupId>
  221. <artifactId>versions-maven-plugin</artifactId>
  222. <version>2.10.0</version>
  223. <configuration>
  224. <rulesUri>file://${project.basedir}/version-rules.xml</rulesUri>
  225. </configuration>
  226. </plugin>
  227. </plugins>
  228. </build>
  229. <reporting>
  230. <plugins>
  231. <plugin>
  232. <!-- maven-site-plugin 3.3 requires maven-project-info-reports-plugin < 3.0 -->
  233. <artifactId>maven-project-info-reports-plugin</artifactId>
  234. <version>2.9</version>
  235. </plugin>
  236. <plugin>
  237. <artifactId>maven-javadoc-plugin</artifactId>
  238. <reportSets>
  239. <reportSet>
  240. <id>aggregate</id>
  241. <inherited>false</inherited>
  242. <reports>
  243. <report>aggregate</report>
  244. </reports>
  245. </reportSet>
  246. <reportSet>
  247. <id>default</id>
  248. <reports>
  249. <report>javadoc</report>
  250. </reports>
  251. </reportSet>
  252. </reportSets>
  253. </plugin>
  254. </plugins>
  255. </reporting>
  256. <profiles>
  257. <profile>
  258. <id>release</id>
  259. <build>
  260. <plugins>
  261. <plugin>
  262. <groupId>org.apache.maven.plugins</groupId>
  263. <artifactId>maven-gpg-plugin</artifactId>
  264. <executions>
  265. <execution>
  266. <id>sign-artifacts</id>
  267. <phase>verify</phase>
  268. <goals>
  269. <goal>sign</goal>
  270. </goals>
  271. </execution>
  272. </executions>
  273. </plugin>
  274. <plugin>
  275. <groupId>org.apache.maven.plugins</groupId>
  276. <artifactId>maven-source-plugin</artifactId>
  277. <executions>
  278. <execution>
  279. <id>attach-sources</id>
  280. <goals>
  281. <goal>jar-no-fork</goal>
  282. </goals>
  283. </execution>
  284. </executions>
  285. </plugin>
  286. <plugin>
  287. <groupId>org.apache.maven.plugins</groupId>
  288. <artifactId>maven-javadoc-plugin</artifactId>
  289. <executions>
  290. <execution>
  291. <id>attach-javadocs</id>
  292. <goals>
  293. <goal>jar</goal>
  294. </goals>
  295. </execution>
  296. </executions>
  297. </plugin>
  298. </plugins>
  299. </build>
  300. </profile>
  301. </profiles>
  302. </project>