Bump dependency versions

This commit is contained in:
Luck 2017-09-23 23:36:13 +01:00
parent de8fb8de90
commit f4d2a0daf9
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
3 changed files with 11 additions and 11 deletions

View File

@ -39,7 +39,7 @@
<dependency> <dependency>
<groupId>net.kyori</groupId> <groupId>net.kyori</groupId>
<artifactId>text</artifactId> <artifactId>text</artifactId>
<version>1.11-1.0.0</version> <version>1.11-1.2.0</version>
<scope>compile</scope> <scope>compile</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
@ -60,7 +60,7 @@
<dependency> <dependency>
<groupId>com.zaxxer</groupId> <groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId> <artifactId>HikariCP</artifactId>
<version>2.7.0</version> <version>2.7.1</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Jedis --> <!-- Jedis -->
@ -74,7 +74,7 @@
<dependency> <dependency>
<groupId>org.mongodb</groupId> <groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId> <artifactId>mongo-java-driver</artifactId>
<version>3.4.2</version> <version>3.5.0</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- SnakeYAML --> <!-- SnakeYAML -->
@ -102,7 +102,7 @@
<dependency> <dependency>
<groupId>com.github.ben-manes.caffeine</groupId> <groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId> <artifactId>caffeine</artifactId>
<version>2.5.5</version> <version>2.5.6</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<!-- Lombok --> <!-- Lombok -->

View File

@ -32,16 +32,16 @@ import lombok.Getter;
@AllArgsConstructor @AllArgsConstructor
public enum Dependency { public enum Dependency {
CAFFEINE("com.github.ben-manes.caffeine", "caffeine", "2.5.5"), CAFFEINE("com.github.ben-manes.caffeine", "caffeine", "2.5.6"),
MARIADB_DRIVER("org.mariadb.jdbc", "mariadb-java-client", "2.0.3"), MARIADB_DRIVER("org.mariadb.jdbc", "mariadb-java-client", "2.0.3"),
MYSQL_DRIVER("mysql", "mysql-connector-java", "5.1.42"), MYSQL_DRIVER("mysql", "mysql-connector-java", "5.1.44"),
POSTGRESQL_DRIVER("org.postgresql", "postgresql", "9.4.1212"), POSTGRESQL_DRIVER("org.postgresql", "postgresql", "9.4.1212"),
H2_DRIVER("com.h2database", "h2", "1.4.196"), H2_DRIVER("com.h2database", "h2", "1.4.196"),
SQLITE_DRIVER("org.xerial", "sqlite-jdbc", "3.19.3"), SQLITE_DRIVER("org.xerial", "sqlite-jdbc", "3.20.0"),
HIKARI("com.zaxxer", "HikariCP", "2.7.0"), HIKARI("com.zaxxer", "HikariCP", "2.7.1"),
SLF4J_SIMPLE("org.slf4j", "slf4j-simple", "1.7.25"), SLF4J_SIMPLE("org.slf4j", "slf4j-simple", "1.7.25"),
SLF4J_API("org.slf4j", "slf4j-api", "1.7.25"), SLF4J_API("org.slf4j", "slf4j-api", "1.7.25"),
MONGODB_DRIVER("org.mongodb", "mongo-java-driver", "3.4.2"), MONGODB_DRIVER("org.mongodb", "mongo-java-driver", "3.5.0"),
JEDIS("https://github.com/lucko/jedis/releases/download/jedis-2.9.1-shaded/jedis-2.9.1-shaded.jar", "2.9.1-shaded"); JEDIS("https://github.com/lucko/jedis/releases/download/jedis-2.9.1-shaded/jedis-2.9.1-shaded.jar", "2.9.1-shaded");
private final String url; private final String url;

View File

@ -55,8 +55,8 @@
<full.version>${release.version}.${patch.version}</full.version> <full.version>${release.version}.${patch.version}</full.version>
<!-- Standard versions used by the whole project --> <!-- Standard versions used by the whole project -->
<compiler.version>3.6.1</compiler.version> <compiler.version>3.7.0</compiler.version>
<shade.version>3.0.0</shade.version> <shade.version>3.1.0</shade.version>
<lombok.version>1.16.18</lombok.version> <lombok.version>1.16.18</lombok.version>
<gpg.version>1.6</gpg.version> <gpg.version>1.6</gpg.version>
</properties> </properties>