Skip to content

Commit

Permalink
Update jedis to 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caoli5288 committed Jan 20, 2022
1 parent fb70341 commit b535ab1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
<version>3.8.0</version>
</dependency>
<!--<dependency>-->
<!--<groupId>org.mongodb</groupId>-->
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mengcraft/simpleorm/ORM.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static void loadLibrary(JavaPlugin plugin) {
try {
Class.forName("redis.clients.jedis.Jedis");
} catch (ClassNotFoundException e) {
MavenLibs.of("redis.clients:jedis:3.3.0").load();
MavenLibs.of("redis.clients:jedis:3.8.0").load();
}
plugin.getLogger().info("ORM lib load okay!");
}
Expand Down

0 comments on commit b535ab1

Please sign in to comment.