Skip to content

Commit 417975a

Browse files
committed
Use Jedis 3.8.0 and Java 8 since it's required by Jedis now
1 parent 4c1a4bb commit 417975a

File tree

1 file changed

+12
-21
lines changed

1 file changed

+12
-21
lines changed

pom.xml

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,15 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>net.greghaines</groupId>
55
<artifactId>jesque</artifactId>
6-
<version>2.2.1-SNAPSHOT</version>
6+
<version>2.3.0-SNAPSHOT</version>
77
<packaging>jar</packaging>
88
<name>Jesque</name>
99
<description>An implementation of Resque in Java</description>
1010
<url>https://github.com/gresrun/jesque</url>
1111
<inceptionYear>2011</inceptionYear>
1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<jedis.version>3.6.0</jedis.version>
1514
<jackson.version>2.13.1</jackson.version>
16-
<slf4j.version>1.7.32</slf4j.version>
17-
<logback.version>1.2.10</logback.version>
18-
<junit.version>4.13.1</junit.version>
1915
<github.global.server>github-jesque</github.global.server>
2016
</properties>
2117
<licenses>
@@ -182,8 +178,8 @@
182178
<artifactId>maven-compiler-plugin</artifactId>
183179
<version>3.8.1</version>
184180
<configuration>
185-
<source>1.7</source>
186-
<target>1.7</target>
181+
<source>1.8</source>
182+
<target>1.8</target>
187183
</configuration>
188184
</plugin>
189185
<plugin>
@@ -208,6 +204,11 @@
208204
<version>2.10.4</version>
209205
<configuration>
210206
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
207+
<links>
208+
<link>https://javadoc.io/doc/redis.clients/jedis/3.8.0</link>
209+
<link>https://javadoc.io/doc/org.apache.commons/commons-pool2/2.11.1</link>
210+
<link>https://javadoc.io/doc/com.fasterxml.jackson.core/jackson-databind/2.13.1</link>
211+
</links>
211212
</configuration>
212213
</plugin>
213214
<plugin>
@@ -262,7 +263,7 @@
262263
<dependency>
263264
<groupId>redis.clients</groupId>
264265
<artifactId>jedis</artifactId>
265-
<version>${jedis.version}</version>
266+
<version>3.8.0</version>
266267
</dependency>
267268
<dependency>
268269
<groupId>org.apache.commons</groupId>
@@ -272,7 +273,7 @@
272273
<dependency>
273274
<groupId>org.slf4j</groupId>
274275
<artifactId>slf4j-api</artifactId>
275-
<version>${slf4j.version}</version>
276+
<version>1.7.32</version>
276277
</dependency>
277278
<dependency>
278279
<groupId>com.fasterxml.jackson.core</groupId>
@@ -287,7 +288,7 @@
287288
<dependency>
288289
<groupId>ch.qos.logback</groupId>
289290
<artifactId>logback-classic</artifactId>
290-
<version>${logback.version}</version>
291+
<version>1.2.10</version>
291292
<scope>test</scope>
292293
</dependency>
293294
<dependency>
@@ -299,7 +300,7 @@
299300
<dependency>
300301
<groupId>junit</groupId>
301302
<artifactId>junit</artifactId>
302-
<version>${junit.version}</version>
303+
<version>4.13.1</version>
303304
<scope>test</scope>
304305
</dependency>
305306
<dependency>
@@ -320,16 +321,6 @@
320321
<plugin>
321322
<groupId>org.apache.maven.plugins</groupId>
322323
<artifactId>maven-javadoc-plugin</artifactId>
323-
<configuration>
324-
<links>
325-
<link>http://docs.oracle.com/javase/7/docs/api/</link>
326-
<link>http://www.slf4j.org/api/</link>
327-
<link>http://commons.apache.org/proper/commons-pool/api-2.6.0/</link>
328-
<link>http://fasterxml.github.io/jackson-annotations/javadoc/2.9/</link>
329-
<link>http://fasterxml.github.io/jackson-core/javadoc/2.9/</link>
330-
<link>http://fasterxml.github.io/jackson-databind/javadoc/2.9/</link>
331-
</links>
332-
</configuration>
333324
</plugin>
334325
</plugins>
335326
</reporting>

0 commit comments

Comments
 (0)