|
1 | 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> |
| 2 | + <parent> |
| 3 | + <groupId>org.sonatype.oss</groupId> |
| 4 | + <artifactId>oss-parent</artifactId> |
| 5 | + <version>7</version> |
| 6 | + </parent> |
| 7 | + |
7 | 8 | <modelVersion>4.0.0</modelVersion> |
8 | 9 | <packaging>jar</packaging> |
9 | 10 | <groupId>redis.clients</groupId> |
10 | 11 | <artifactId>jedis</artifactId> |
11 | | - <version>3.5.0-SNAPSHOT</version> |
| 12 | + <version>3.6.0-SNAPSHOT</version> |
12 | 13 | <name>Jedis</name> |
13 | 14 | <description>Jedis is a blazingly small and sane Redis java client.</description> |
14 | | - <url>https://github.com/redis/jedis</url> |
| 15 | + <url>https://github.com/redis/jedis</url> |
15 | 16 |
|
16 | 17 | <mailingLists> |
17 | 18 | <mailingList> |
18 | 19 | <name>Jedis Mailing List</name> |
19 | 20 | <post>jedis_redis@googlegroups.com</post> |
20 | 21 | <archive> |
21 | | - http://groups.google.com/group/jedis_redis |
22 | | - </archive> |
| 22 | + http://groups.google.com/group/jedis_redis |
| 23 | + </archive> |
23 | 24 | </mailingList> |
24 | 25 | </mailingLists> |
25 | 26 |
|
|
36 | 37 | <url>http://github.com/redis/jedis/issues</url> |
37 | 38 | </issueManagement> |
38 | 39 |
|
39 | | - <scm> |
40 | | - <connection>scm:git:git@github.com:redis/jedis.git</connection> |
41 | | - <url>scm:git:git@github.com:redis/jedis.git</url> |
42 | | - <developerConnection>scm:git:git@github.com:redis/jedis.git</developerConnection> |
43 | | - <tag>jedis-2.2.0</tag> |
44 | | - </scm> |
| 40 | + <scm> |
| 41 | + <connection>scm:git:git@github.com:redis/jedis.git</connection> |
| 42 | + <url>scm:git:git@github.com:redis/jedis.git</url> |
| 43 | + <developerConnection>scm:git:git@github.com:redis/jedis.git</developerConnection> |
| 44 | + <tag>jedis-3.4.1</tag> |
| 45 | + </scm> |
45 | 46 |
|
46 | 47 | <properties> |
47 | 48 | <redis-hosts>localhost:6379,localhost:6380,localhost:6381,localhost:6382,localhost:6383,localhost:6384,localhost:6385,localhost:6386</redis-hosts> |
48 | 49 | <sentinel-hosts>localhost:26379,localhost:26380,localhost:26381</sentinel-hosts> |
49 | 50 | <cluster-hosts>localhost:7379,localhost:7380,localhost:7381,localhost:7382,localhost:7383,localhost:7384,localhost:7385</cluster-hosts> |
50 | | - <github.global.server>github</github.global.server> |
| 51 | + <github.global.server>github</github.global.server> |
| 52 | + <log4j.version>2.13.3</log4j.version> |
51 | 53 | </properties> |
52 | 54 |
|
53 | 55 | <dependencies> |
|
59 | 61 | <dependency> |
60 | 62 | <groupId>org.apache.commons</groupId> |
61 | 63 | <artifactId>commons-pool2</artifactId> |
62 | | - <version>2.6.2</version> |
| 64 | + <version>2.9.0</version> |
63 | 65 | <type>jar</type> |
64 | 66 | <scope>compile</scope> |
65 | 67 | </dependency> |
|
74 | 76 | <dependency> |
75 | 77 | <groupId>org.apache.logging.log4j</groupId> |
76 | 78 | <artifactId>log4j-core</artifactId> |
77 | | - <version>2.13.2</version> |
| 79 | + <version>${log4j.version}</version> |
78 | 80 | <scope>test</scope> |
79 | 81 | </dependency> |
80 | 82 | <dependency> |
81 | 83 | <groupId>org.apache.logging.log4j</groupId> |
82 | 84 | <artifactId>log4j-slf4j-impl</artifactId> |
83 | | - <version>2.11.1</version> |
| 85 | + <version>${log4j.version}</version> |
84 | 86 | <scope>test</scope> |
85 | 87 | </dependency> |
86 | 88 | <dependency> |
87 | 89 | <groupId>com.kohlschutter.junixsocket</groupId> |
88 | 90 | <artifactId>junixsocket-core</artifactId> |
89 | | - <version>2.3.1</version> |
| 91 | + <version>2.3.2</version> |
90 | 92 | <scope>test</scope> |
91 | 93 | </dependency> |
92 | 94 | </dependencies> |
|
124 | 126 | </executions> |
125 | 127 | </plugin> |
126 | 128 | <plugin> |
127 | | - <groupId>org.apache.maven.plugins</groupId> |
128 | 129 | <artifactId>maven-compiler-plugin</artifactId> |
129 | 130 | <version>3.8.1</version> |
130 | 131 | <configuration> |
131 | | - <source>1.7</source> |
132 | | - <target>1.7</target> |
| 132 | + <source>1.8</source> |
| 133 | + <target>1.8</target> |
133 | 134 | </configuration> |
134 | 135 | </plugin> |
135 | 136 | <plugin> |
136 | | - <groupId>org.apache.maven.plugins</groupId> |
137 | 137 | <artifactId>maven-surefire-plugin</artifactId> |
138 | | - <version>2.19.1</version> |
| 138 | + <version>2.22.2</version> |
139 | 139 | <configuration> |
140 | 140 | <systemPropertyVariables> |
141 | 141 | <redis-hosts>${redis-hosts}</redis-hosts> |
142 | 142 | </systemPropertyVariables> |
143 | 143 | </configuration> |
144 | 144 | </plugin> |
145 | 145 | <plugin> |
146 | | - <groupId>org.apache.maven.plugins</groupId> |
147 | 146 | <artifactId>maven-source-plugin</artifactId> |
148 | | - <version>2.2.1</version> |
| 147 | + <version>3.2.1</version> |
149 | 148 | <configuration> |
150 | 149 | <attach>true</attach> |
151 | 150 | </configuration> |
152 | | - <executions> |
153 | | - <execution> |
154 | | - <id>attach-sources</id> |
155 | | - <goals> |
156 | | - <goal>jar</goal> |
157 | | - </goals> |
158 | | - </execution> |
159 | | - </executions> |
| 151 | + <executions> |
| 152 | + <execution> |
| 153 | + <id>attach-sources</id> |
| 154 | + <goals> |
| 155 | + <goal>jar</goal> |
| 156 | + </goals> |
| 157 | + </execution> |
| 158 | + </executions> |
160 | 159 | </plugin> |
161 | 160 | <plugin> |
162 | | - <groupId>org.apache.maven.plugins</groupId> |
163 | 161 | <artifactId>maven-javadoc-plugin</artifactId> |
164 | | - <version>2.9.1</version> |
| 162 | + <version>2.10.4</version> |
165 | 163 | <configuration> |
166 | 164 | <aggregate>true</aggregate> |
167 | 165 | <additionalparam>-Xdoclint:none</additionalparam> |
168 | 166 | </configuration> |
169 | | - <executions> |
170 | | - <execution> |
171 | | - <id>attach-javadoc</id> |
172 | | - <goals> |
173 | | - <goal>jar</goal> |
174 | | - </goals> |
175 | | - </execution> |
176 | | - </executions> |
| 167 | + <executions> |
| 168 | + <execution> |
| 169 | + <id>attach-javadoc</id> |
| 170 | + <goals> |
| 171 | + <goal>jar</goal> |
| 172 | + </goals> |
| 173 | + </execution> |
| 174 | + </executions> |
177 | 175 | </plugin> |
178 | 176 | <plugin> |
179 | | - <groupId>org.apache.maven.plugins</groupId> |
180 | 177 | <artifactId>maven-release-plugin</artifactId> |
181 | | - <version>2.4.2</version> |
| 178 | + <version>2.5.3</version> |
182 | 179 | </plugin> |
183 | 180 | <plugin> |
184 | 181 | <groupId>org.sonatype.plugins</groupId> |
185 | 182 | <artifactId>nexus-staging-maven-plugin</artifactId> |
186 | | - <version>1.6.7</version> |
| 183 | + <version>1.6.8</version> |
187 | 184 | <extensions>true</extensions> |
188 | 185 | <configuration> |
189 | 186 | <serverId>ossrh</serverId> |
|
200 | 197 | </configuration> |
201 | 198 | </plugin> |
202 | 199 | <plugin> |
203 | | - <artifactId>maven-jar-plugin</artifactId> |
204 | | - <version>2.6</version> |
205 | | - <configuration> |
206 | | - <archive> |
207 | | - <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
208 | | - </archive> |
209 | | - </configuration> |
| 200 | + <artifactId>maven-jar-plugin</artifactId> |
| 201 | + <version>3.0.2</version> |
| 202 | + <configuration> |
| 203 | + <archive> |
| 204 | + <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| 205 | + </archive> |
| 206 | + </configuration> |
210 | 207 | </plugin> |
211 | 208 | <plugin> |
212 | 209 | <groupId>org.apache.felix</groupId> |
213 | 210 | <artifactId>maven-bundle-plugin</artifactId> |
214 | | - <version>2.5.3</version> |
| 211 | + <version>4.2.1</version> |
215 | 212 | <executions> |
216 | | - <execution> |
217 | | - <id>bundle-manifest</id> |
218 | | - <phase>process-classes</phase> |
219 | | - <goals> |
220 | | - <goal>manifest</goal> |
221 | | - </goals> |
222 | | - </execution> |
| 213 | + <execution> |
| 214 | + <id>bundle-manifest</id> |
| 215 | + <phase>process-classes</phase> |
| 216 | + <goals> |
| 217 | + <goal>manifest</goal> |
| 218 | + </goals> |
| 219 | + </execution> |
223 | 220 | </executions> |
224 | 221 | </plugin> |
225 | 222 | </plugins> |
|
231 | 228 | <plugins> |
232 | 229 | <!--Sign the components - this is required by maven central for releases --> |
233 | 230 | <plugin> |
234 | | - <groupId>org.apache.maven.plugins</groupId> |
235 | 231 | <artifactId>maven-gpg-plugin</artifactId> |
236 | | - <version>1.5</version> |
| 232 | + <version>1.6</version> |
237 | 233 | <executions> |
238 | 234 | <execution> |
239 | 235 | <id>sign-artifacts</id> |
|
0 commit comments