metrics-parent-3.1.2.pom 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  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. <modelVersion>4.0.0</modelVersion>
  4. <prerequisites>
  5. <maven>3.0.1</maven>
  6. </prerequisites>
  7. <groupId>io.dropwizard.metrics</groupId>
  8. <artifactId>metrics-parent</artifactId>
  9. <version>3.1.2</version>
  10. <packaging>pom</packaging>
  11. <name>Metrics Parent</name>
  12. <description>
  13. The Metrics library.
  14. </description>
  15. <url>http://metrics.codahale.com/</url>
  16. <modules>
  17. <module>metrics-annotation</module>
  18. <module>metrics-benchmarks</module>
  19. <module>metrics-core</module>
  20. <module>metrics-healthchecks</module>
  21. <module>metrics-ehcache</module>
  22. <module>metrics-ganglia</module>
  23. <module>metrics-graphite</module>
  24. <module>metrics-httpclient</module>
  25. <module>metrics-httpasyncclient</module>
  26. <module>metrics-jdbi</module>
  27. <module>metrics-jersey</module>
  28. <module>metrics-jersey2</module>
  29. <module>metrics-jetty8</module>
  30. <module>metrics-jetty9</module>
  31. <module>metrics-jetty9-legacy</module>
  32. <module>metrics-json</module>
  33. <module>metrics-jvm</module>
  34. <module>metrics-log4j</module>
  35. <module>metrics-log4j2</module>
  36. <module>metrics-logback</module>
  37. <module>metrics-servlet</module>
  38. <module>metrics-servlets</module>
  39. </modules>
  40. <properties>
  41. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  42. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  43. <servlet.version>3.1.0</servlet.version>
  44. <slf4j.version>1.7.7</slf4j.version>
  45. <jackson.version>2.4.2</jackson.version>
  46. <jetty8.version>8.1.11.v20130520</jetty8.version>
  47. <jetty9.legacy.version>9.0.4.v20130625</jetty9.legacy.version>
  48. <jetty9.version>9.2.2.v20140723</jetty9.version>
  49. <rabbitmq.version>3.3.5</rabbitmq.version>
  50. </properties>
  51. <developers>
  52. <developer>
  53. <name>Coda Hale</name>
  54. <email>coda.hale@gmail.com</email>
  55. <timezone>America/Los_Angeles</timezone>
  56. <roles>
  57. <role>architect</role>
  58. </roles>
  59. </developer>
  60. <developer>
  61. <name>Ryan Tenney</name>
  62. <email>ryan@10e.us</email>
  63. <timezone>America/New_York</timezone>
  64. <roles>
  65. <role>committer</role>
  66. </roles>
  67. </developer>
  68. </developers>
  69. <licenses>
  70. <license>
  71. <name>Apache License 2.0</name>
  72. <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
  73. <distribution>repo</distribution>
  74. </license>
  75. </licenses>
  76. <scm>
  77. <connection>scm:git:git://github.com/dropwizard/metrics.git</connection>
  78. <developerConnection>scm:git:git@github.com:dropwizard/metrics.git</developerConnection>
  79. <url>http://github.com/dropwizard/metrics/</url>
  80. <tag>v3.1.2</tag>
  81. </scm>
  82. <issueManagement>
  83. <system>github</system>
  84. <url>http://github.com/dropwizard/metrics/issues#issue/</url>
  85. </issueManagement>
  86. <distributionManagement>
  87. <snapshotRepository>
  88. <id>sonatype-nexus-snapshots</id>
  89. <name>Sonatype Nexus Snapshots</name>
  90. <url>http://oss.sonatype.org/content/repositories/snapshots</url>
  91. </snapshotRepository>
  92. <repository>
  93. <id>sonatype-nexus-staging</id>
  94. <name>Nexus Release Repository</name>
  95. <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  96. </repository>
  97. </distributionManagement>
  98. <dependencyManagement>
  99. <dependencies>
  100. <dependency>
  101. <groupId>org.slf4j</groupId>
  102. <artifactId>slf4j-api</artifactId>
  103. <version>${slf4j.version}</version>
  104. </dependency>
  105. </dependencies>
  106. </dependencyManagement>
  107. <dependencies>
  108. <dependency>
  109. <groupId>org.slf4j</groupId>
  110. <artifactId>slf4j-api</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>junit</groupId>
  114. <artifactId>junit</artifactId>
  115. <version>4.11</version>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.assertj</groupId>
  120. <artifactId>assertj-core</artifactId>
  121. <version>1.6.1</version>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.mockito</groupId>
  126. <artifactId>mockito-all</artifactId>
  127. <version>1.9.5</version>
  128. <scope>test</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.slf4j</groupId>
  132. <artifactId>slf4j-simple</artifactId>
  133. <version>${slf4j.version}</version>
  134. <scope>test</scope>
  135. </dependency>
  136. </dependencies>
  137. <profiles>
  138. <profile>
  139. <id>doclint-java8-disable</id>
  140. <activation>
  141. <jdk>[1.8,)</jdk>
  142. </activation>
  143. <build>
  144. <plugins>
  145. <!-- java 8 doclint html verification is excluded to suppress strict HTML 4.0 compliance errors
  146. like "error: self-closing element not allowed <p />" -->
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-javadoc-plugin</artifactId>
  150. <configuration>
  151. <additionalparam>-Xdoclint:all -Xdoclint:-html</additionalparam>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </profile>
  157. <profile>
  158. <id>release-sign-artifacts</id>
  159. <activation>
  160. <property>
  161. <name>performRelease</name>
  162. <value>true</value>
  163. </property>
  164. </activation>
  165. <build>
  166. <plugins>
  167. <plugin>
  168. <groupId>org.apache.maven.plugins</groupId>
  169. <artifactId>maven-gpg-plugin</artifactId>
  170. <version>1.4</version>
  171. <executions>
  172. <execution>
  173. <id>sign-artifacts</id>
  174. <phase>verify</phase>
  175. <goals>
  176. <goal>sign</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. <configuration>
  181. <keyname>4D13335B</keyname>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. </profile>
  187. </profiles>
  188. <build>
  189. <plugins>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-compiler-plugin</artifactId>
  193. <version>3.1</version>
  194. <configuration>
  195. <source>1.6</source>
  196. <target>1.6</target>
  197. </configuration>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.apache.felix</groupId>
  201. <artifactId>maven-bundle-plugin</artifactId>
  202. <version>2.3.7</version>
  203. <extensions>true</extensions>
  204. <configuration>
  205. <instructions>
  206. <Import-Package><![CDATA[
  207. javax.servlet*;version="[2.5.0,4.0.0)",
  208. org.slf4j*;version="[1.6.0,2.0.0)",
  209. sun.misc.*;resolution:=optional,
  210. *
  211. ]]>
  212. </Import-Package>
  213. </instructions>
  214. </configuration>
  215. </plugin>
  216. <plugin>
  217. <groupId>org.apache.maven.plugins</groupId>
  218. <artifactId>maven-surefire-plugin</artifactId>
  219. <version>2.14.1</version>
  220. <configuration>
  221. <parallel>classes</parallel>
  222. </configuration>
  223. </plugin>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-source-plugin</artifactId>
  227. <version>2.2.1</version>
  228. <executions>
  229. <execution>
  230. <id>attach-sources</id>
  231. <goals>
  232. <goal>jar</goal>
  233. </goals>
  234. </execution>
  235. </executions>
  236. </plugin>
  237. <plugin>
  238. <groupId>org.apache.maven.plugins</groupId>
  239. <artifactId>maven-enforcer-plugin</artifactId>
  240. <version>1.2</version>
  241. <executions>
  242. <execution>
  243. <id>enforce</id>
  244. <configuration>
  245. <rules>
  246. <DependencyConvergence />
  247. </rules>
  248. </configuration>
  249. <goals>
  250. <goal>enforce</goal>
  251. </goals>
  252. </execution>
  253. </executions>
  254. </plugin>
  255. <plugin>
  256. <groupId>org.apache.maven.plugins</groupId>
  257. <artifactId>maven-javadoc-plugin</artifactId>
  258. <version>2.9</version>
  259. <executions>
  260. <execution>
  261. <id>attach-javadocs</id>
  262. <goals>
  263. <goal>jar</goal>
  264. </goals>
  265. </execution>
  266. </executions>
  267. </plugin>
  268. <plugin>
  269. <groupId>org.apache.maven.plugins</groupId>
  270. <artifactId>maven-release-plugin</artifactId>
  271. <version>2.4.1</version>
  272. <configuration>
  273. <autoVersionSubmodules>true</autoVersionSubmodules>
  274. <mavenExecutorId>forked-path</mavenExecutorId>
  275. <tagNameFormat>v@{project.version}</tagNameFormat>
  276. <preparationGoals>clean test</preparationGoals>
  277. </configuration>
  278. </plugin>
  279. <plugin>
  280. <groupId>org.codehaus.mojo</groupId>
  281. <artifactId>findbugs-maven-plugin</artifactId>
  282. <version>3.0.0</version>
  283. <configuration>
  284. <effort>Max</effort>
  285. <threshold>Default</threshold>
  286. <xmlOutput>true</xmlOutput>
  287. </configuration>
  288. <executions>
  289. <execution>
  290. <goals>
  291. <goal>check</goal>
  292. </goals>
  293. </execution>
  294. </executions>
  295. </plugin>
  296. <plugin>
  297. <groupId>org.apache.maven.plugins</groupId>
  298. <artifactId>maven-jar-plugin</artifactId>
  299. <version>2.4</version>
  300. <configuration>
  301. <archive>
  302. <manifest>
  303. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  304. </manifest>
  305. </archive>
  306. </configuration>
  307. </plugin>
  308. </plugins>
  309. </build>
  310. </project>