jedis-3.7.0.pom 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <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/maven-v4_0_0.xsd">
  2. <parent>
  3. <groupId>org.sonatype.oss</groupId>
  4. <artifactId>oss-parent</artifactId>
  5. <version>7</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <packaging>jar</packaging>
  9. <groupId>redis.clients</groupId>
  10. <artifactId>jedis</artifactId>
  11. <version>3.7.0</version>
  12. <name>Jedis</name>
  13. <description>Jedis is a blazingly small and sane Redis java client.</description>
  14. <url>https://github.com/redis/jedis</url>
  15. <mailingLists>
  16. <mailingList>
  17. <name>Jedis Mailing List</name>
  18. <post>jedis_redis@googlegroups.com</post>
  19. <archive>
  20. http://groups.google.com/group/jedis_redis
  21. </archive>
  22. </mailingList>
  23. </mailingLists>
  24. <licenses>
  25. <license>
  26. <name>MIT</name>
  27. <url>http://github.com/redis/jedis/raw/master/LICENSE.txt</url>
  28. <distribution>repo</distribution>
  29. </license>
  30. </licenses>
  31. <issueManagement>
  32. <system>github</system>
  33. <url>http://github.com/redis/jedis/issues</url>
  34. </issueManagement>
  35. <scm>
  36. <connection>scm:git:git@github.com:redis/jedis.git</connection>
  37. <url>scm:git:git@github.com:redis/jedis.git</url>
  38. <developerConnection>scm:git:git@github.com:redis/jedis.git</developerConnection>
  39. <tag>jedis-3.4.1</tag>
  40. </scm>
  41. <properties>
  42. <github.global.server>github</github.global.server>
  43. <log4j.version>2.13.3</log4j.version>
  44. <jedis.module.name>redis.clients.jedis</jedis.module.name>
  45. </properties>
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-api</artifactId>
  50. <version>1.7.30</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.commons</groupId>
  54. <artifactId>commons-pool2</artifactId>
  55. <version>2.10.0</version>
  56. <type>jar</type>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. <version>4.13.1</version>
  63. <type>jar</type>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.logging.log4j</groupId>
  68. <artifactId>log4j-core</artifactId>
  69. <version>${log4j.version}</version>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.logging.log4j</groupId>
  74. <artifactId>log4j-slf4j-impl</artifactId>
  75. <version>${log4j.version}</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.kohlschutter.junixsocket</groupId>
  80. <artifactId>junixsocket-core</artifactId>
  81. <version>2.3.2</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.mockito</groupId>
  86. <artifactId>mockito-core</artifactId>
  87. <version>3.7.7</version>
  88. <scope>test</scope>
  89. </dependency>
  90. </dependencies>
  91. <distributionManagement>
  92. <snapshotRepository>
  93. <id>ossrh</id>
  94. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  95. </snapshotRepository>
  96. <repository>
  97. <id>ossrh</id>
  98. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  99. </repository>
  100. </distributionManagement>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.jacoco</groupId>
  105. <artifactId>jacoco-maven-plugin</artifactId>
  106. <version>0.8.5</version>
  107. <executions>
  108. <execution>
  109. <goals>
  110. <goal>prepare-agent</goal>
  111. </goals>
  112. </execution>
  113. <execution>
  114. <id>report</id>
  115. <phase>test</phase>
  116. <goals>
  117. <goal>report</goal>
  118. </goals>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. <plugin>
  123. <artifactId>maven-compiler-plugin</artifactId>
  124. <version>3.8.1</version>
  125. <configuration>
  126. <source>1.8</source>
  127. <target>1.8</target>
  128. </configuration>
  129. </plugin>
  130. <plugin>
  131. <artifactId>maven-surefire-plugin</artifactId>
  132. <version>2.22.2</version>
  133. <configuration>
  134. <systemPropertyVariables>
  135. <redis-hosts>${redis-hosts}</redis-hosts>
  136. </systemPropertyVariables>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <artifactId>maven-source-plugin</artifactId>
  141. <version>3.2.1</version>
  142. <configuration>
  143. <attach>true</attach>
  144. </configuration>
  145. <executions>
  146. <execution>
  147. <id>attach-sources</id>
  148. <goals>
  149. <goal>jar</goal>
  150. </goals>
  151. </execution>
  152. </executions>
  153. </plugin>
  154. <plugin>
  155. <artifactId>maven-javadoc-plugin</artifactId>
  156. <version>2.10.4</version>
  157. <configuration>
  158. <aggregate>true</aggregate>
  159. <additionalparam>-Xdoclint:none</additionalparam>
  160. </configuration>
  161. <executions>
  162. <execution>
  163. <id>attach-javadoc</id>
  164. <goals>
  165. <goal>jar</goal>
  166. </goals>
  167. </execution>
  168. </executions>
  169. </plugin>
  170. <plugin>
  171. <artifactId>maven-release-plugin</artifactId>
  172. <version>2.5.3</version>
  173. </plugin>
  174. <plugin>
  175. <groupId>org.sonatype.plugins</groupId>
  176. <artifactId>nexus-staging-maven-plugin</artifactId>
  177. <version>1.6.8</version>
  178. <extensions>true</extensions>
  179. <configuration>
  180. <serverId>ossrh</serverId>
  181. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  182. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  183. </configuration>
  184. </plugin>
  185. <plugin>
  186. <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
  187. <artifactId>maven-java-formatter-plugin</artifactId>
  188. <version>0.4</version>
  189. <configuration>
  190. <configFile>${project.basedir}/hbase-formatter.xml</configFile>
  191. </configuration>
  192. </plugin>
  193. <plugin>
  194. <artifactId>maven-jar-plugin</artifactId>
  195. <version>3.0.2</version>
  196. <configuration>
  197. <archive>
  198. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  199. <manifestEntries>
  200. <Automatic-Module-Name>${jedis.module.name}</Automatic-Module-Name>
  201. </manifestEntries>
  202. </archive>
  203. </configuration>
  204. </plugin>
  205. <plugin>
  206. <groupId>org.apache.felix</groupId>
  207. <artifactId>maven-bundle-plugin</artifactId>
  208. <version>4.2.1</version>
  209. <executions>
  210. <execution>
  211. <id>bundle-manifest</id>
  212. <phase>process-classes</phase>
  213. <goals>
  214. <goal>manifest</goal>
  215. </goals>
  216. </execution>
  217. </executions>
  218. </plugin>
  219. </plugins>
  220. </build>
  221. <profiles>
  222. <profile>
  223. <id>release</id>
  224. <build>
  225. <plugins>
  226. <!--Sign the components - this is required by maven central for releases -->
  227. <plugin>
  228. <artifactId>maven-gpg-plugin</artifactId>
  229. <version>3.0.1</version>
  230. <configuration>
  231. <gpgArguments>
  232. <arg>--pinentry-mode</arg>
  233. <arg>loopback</arg>
  234. </gpgArguments>
  235. </configuration>
  236. <executions>
  237. <execution>
  238. <id>sign-artifacts</id>
  239. <phase>verify</phase>
  240. <goals>
  241. <goal>sign</goal>
  242. </goals>
  243. </execution>
  244. </executions>
  245. </plugin>
  246. </plugins>
  247. </build>
  248. </profile>
  249. </profiles>
  250. </project>