failsafe-2.3.3.pom 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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. <parent>
  5. <groupId>org.sonatype.oss</groupId>
  6. <artifactId>oss-parent</artifactId>
  7. <version>7</version>
  8. </parent>
  9. <groupId>net.jodah</groupId>
  10. <artifactId>failsafe</artifactId>
  11. <version>2.3.3</version>
  12. <name>Failsafe</name>
  13. <url>http://github.com/jhalterman/failsafe/</url>
  14. <licenses>
  15. <license>
  16. <name>Apache License, Version 2.0</name>
  17. <url>http://apache.org/licenses/LICENSE-2.0</url>
  18. <distribution>repo</distribution>
  19. </license>
  20. </licenses>
  21. <developers>
  22. <developer>
  23. <name>Jonathan Halterman</name>
  24. <url>http://jodah.net</url>
  25. </developer>
  26. </developers>
  27. <scm>
  28. <connection>scm:git:git@github.com:jhalterman/failsafe.git</connection>
  29. <developerConnection>scm:git:git@github.com:jhalterman/failsafe.git</developerConnection>
  30. <url>http://github.com/jhalterman/failsafe/</url>
  31. </scm>
  32. <dependencies>
  33. <!-- Test Dependencies -->
  34. <dependency>
  35. <groupId>org.testng</groupId>
  36. <artifactId>testng</artifactId>
  37. <version>6.9.10</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mockito</groupId>
  42. <artifactId>mockito-core</artifactId>
  43. <version>2.23.4</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>net.jodah</groupId>
  48. <artifactId>concurrentunit</artifactId>
  49. <version>0.4.4</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <!-- Examples dependencies -->
  53. <dependency>
  54. <groupId>io.reactivex</groupId>
  55. <artifactId>rxjava</artifactId>
  56. <version>1.0.12</version>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.netty</groupId>
  61. <artifactId>netty-all</artifactId>
  62. <version>4.0.43.Final</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.vertx</groupId>
  67. <artifactId>vertx-core</artifactId>
  68. <version>3.5.4</version>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <version>3.8.1</version>
  78. <configuration>
  79. <source>1.8</source>
  80. <target>1.8</target>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-release-plugin</artifactId>
  85. <configuration>
  86. <releaseProfiles>release</releaseProfiles>
  87. <arguments>-Prelease</arguments>
  88. </configuration>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-jar-plugin</artifactId>
  92. <version>3.1.1</version>
  93. <configuration>
  94. <archive>
  95. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  96. </archive>
  97. </configuration>
  98. </plugin>
  99. <plugin>
  100. <groupId>org.apache.felix</groupId>
  101. <artifactId>maven-bundle-plugin</artifactId>
  102. <version>4.2.0</version>
  103. <extensions>true</extensions>
  104. <executions>
  105. <execution>
  106. <id>bundle-manifest</id>
  107. <phase>process-classes</phase>
  108. <goals>
  109. <goal>manifest</goal>
  110. </goals>
  111. </execution>
  112. </executions>
  113. <configuration>
  114. <supportedProjectTypes>
  115. <supportedProjectType>jar</supportedProjectType>
  116. <supportedProjectType>bundle</supportedProjectType>
  117. </supportedProjectTypes>
  118. <instructions>
  119. <Implementation-Title>${project.description}</Implementation-Title>
  120. <Implementation-Version>${project.version}</Implementation-Version>
  121. <Bundle-Name>Failsafe</Bundle-Name>
  122. <Bundle-SymbolicName>net.jodah.failsafe</Bundle-SymbolicName>
  123. <Export-Package>net.jodah.failsafe*;version=1.0</Export-Package>
  124. <Import-Package>*</Import-Package>
  125. </instructions>
  126. </configuration>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-javadoc-plugin</artifactId>
  131. <version>2.10.4</version>
  132. <executions>
  133. <execution>
  134. <id>attach-javadocs</id>
  135. <goals>
  136. <goal>jar</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. <configuration>
  141. <author>false</author>
  142. <show>protected</show>
  143. <excludePackageNames>*.internal</excludePackageNames>
  144. <additionalparam>
  145. -Xdoclint:none
  146. -notimestamp
  147. -link http://docs.oracle.com/javase/8/docs/api/
  148. </additionalparam>
  149. </configuration>
  150. </plugin>
  151. <!-- Coverage -->
  152. <plugin>
  153. <groupId>org.eluder.coveralls</groupId>
  154. <artifactId>coveralls-maven-plugin</artifactId>
  155. <version>3.1.0</version>
  156. </plugin>
  157. <plugin>
  158. <groupId>org.jacoco</groupId>
  159. <artifactId>jacoco-maven-plugin</artifactId>
  160. <version>0.8.2</version>
  161. <executions>
  162. <execution>
  163. <id>prepare-agent</id>
  164. <goals>
  165. <goal>prepare-agent</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. <profiles>
  173. <profile>
  174. <id>release</id>
  175. <build>
  176. <plugins>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-source-plugin</artifactId>
  180. <version>2.1.2</version>
  181. <executions>
  182. <execution>
  183. <id>attach-sources</id>
  184. <goals>
  185. <goal>jar-no-fork</goal>
  186. </goals>
  187. </execution>
  188. </executions>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.apache.maven.plugins</groupId>
  192. <artifactId>maven-gpg-plugin</artifactId>
  193. <version>1.1</version>
  194. <executions>
  195. <execution>
  196. <id>sign-artifacts</id>
  197. <phase>verify</phase>
  198. <goals>
  199. <goal>sign</goal>
  200. </goals>
  201. </execution>
  202. </executions>
  203. </plugin>
  204. <plugin>
  205. <groupId>org.sonatype.plugins</groupId>
  206. <artifactId>nexus-staging-maven-plugin</artifactId>
  207. <version>1.6.7</version>
  208. <extensions>true</extensions>
  209. <configuration>
  210. <serverId>sonatype-nexus-staging</serverId>
  211. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  212. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  213. </configuration>
  214. </plugin>
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-release-plugin</artifactId>
  218. <configuration>
  219. <goals>deploy nexus-staging:release</goals>
  220. </configuration>
  221. </plugin>
  222. </plugins>
  223. </build>
  224. </profile>
  225. </profiles>
  226. </project>