jedis-3.8.0.pom 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  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.8.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. <slf4j.version>1.7.30</slf4j.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>${slf4j.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.commons</groupId>
  54. <artifactId>commons-pool2</artifactId>
  55. <version>2.11.1</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.slf4j</groupId>
  68. <artifactId>slf4j-simple</artifactId>
  69. <version>${slf4j.version}</version>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.kohlschutter.junixsocket</groupId>
  74. <artifactId>junixsocket-core</artifactId>
  75. <version>2.3.2</version>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.mockito</groupId>
  80. <artifactId>mockito-core</artifactId>
  81. <version>3.7.7</version>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. <distributionManagement>
  86. <snapshotRepository>
  87. <id>ossrh</id>
  88. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  89. </snapshotRepository>
  90. <repository>
  91. <id>ossrh</id>
  92. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  93. </repository>
  94. </distributionManagement>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.jacoco</groupId>
  99. <artifactId>jacoco-maven-plugin</artifactId>
  100. <version>0.8.5</version>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>prepare-agent</goal>
  105. </goals>
  106. </execution>
  107. <execution>
  108. <id>report</id>
  109. <phase>test</phase>
  110. <goals>
  111. <goal>report</goal>
  112. </goals>
  113. </execution>
  114. </executions>
  115. </plugin>
  116. <plugin>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <version>3.8.1</version>
  119. <configuration>
  120. <source>1.8</source>
  121. <target>1.8</target>
  122. </configuration>
  123. </plugin>
  124. <plugin>
  125. <artifactId>maven-surefire-plugin</artifactId>
  126. <version>2.22.2</version>
  127. <configuration>
  128. <systemPropertyVariables>
  129. <redis-hosts>${redis-hosts}</redis-hosts>
  130. </systemPropertyVariables>
  131. </configuration>
  132. </plugin>
  133. <plugin>
  134. <artifactId>maven-source-plugin</artifactId>
  135. <version>3.2.1</version>
  136. <configuration>
  137. <attach>true</attach>
  138. </configuration>
  139. <executions>
  140. <execution>
  141. <id>attach-sources</id>
  142. <goals>
  143. <goal>jar</goal>
  144. </goals>
  145. </execution>
  146. </executions>
  147. </plugin>
  148. <plugin>
  149. <artifactId>maven-javadoc-plugin</artifactId>
  150. <version>2.10.4</version>
  151. <configuration>
  152. <aggregate>true</aggregate>
  153. <additionalparam>-Xdoclint:none</additionalparam>
  154. </configuration>
  155. <executions>
  156. <execution>
  157. <id>attach-javadoc</id>
  158. <goals>
  159. <goal>jar</goal>
  160. </goals>
  161. </execution>
  162. </executions>
  163. </plugin>
  164. <plugin>
  165. <artifactId>maven-release-plugin</artifactId>
  166. <version>2.5.3</version>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.sonatype.plugins</groupId>
  170. <artifactId>nexus-staging-maven-plugin</artifactId>
  171. <version>1.6.8</version>
  172. <extensions>true</extensions>
  173. <configuration>
  174. <serverId>ossrh</serverId>
  175. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  176. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
  181. <artifactId>maven-java-formatter-plugin</artifactId>
  182. <version>0.4</version>
  183. <configuration>
  184. <configFile>${project.basedir}/hbase-formatter.xml</configFile>
  185. </configuration>
  186. </plugin>
  187. <plugin>
  188. <artifactId>maven-jar-plugin</artifactId>
  189. <version>3.0.2</version>
  190. <configuration>
  191. <archive>
  192. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  193. <manifestEntries>
  194. <Automatic-Module-Name>${jedis.module.name}</Automatic-Module-Name>
  195. </manifestEntries>
  196. </archive>
  197. </configuration>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.apache.felix</groupId>
  201. <artifactId>maven-bundle-plugin</artifactId>
  202. <version>4.2.1</version>
  203. <executions>
  204. <execution>
  205. <id>bundle-manifest</id>
  206. <phase>process-classes</phase>
  207. <goals>
  208. <goal>manifest</goal>
  209. </goals>
  210. </execution>
  211. </executions>
  212. </plugin>
  213. </plugins>
  214. </build>
  215. <profiles>
  216. <profile>
  217. <id>release</id>
  218. <build>
  219. <plugins>
  220. <!--Sign the components - this is required by maven central for releases -->
  221. <plugin>
  222. <artifactId>maven-gpg-plugin</artifactId>
  223. <version>3.0.1</version>
  224. <configuration>
  225. <gpgArguments>
  226. <arg>--pinentry-mode</arg>
  227. <arg>loopback</arg>
  228. </gpgArguments>
  229. </configuration>
  230. <executions>
  231. <execution>
  232. <id>sign-artifacts</id>
  233. <phase>verify</phase>
  234. <goals>
  235. <goal>sign</goal>
  236. </goals>
  237. </execution>
  238. </executions>
  239. </plugin>
  240. </plugins>
  241. </build>
  242. </profile>
  243. </profiles>
  244. </project>