Fix #12, bump to 1.2.1

feat/data-edit-commands
William 3 years ago
parent 0e2fed5cce
commit 911bdbc400

@ -11,7 +11,7 @@ plugins {
allprojects {
group 'me.William278'
version '1.2'
version '1.2.1'
compileJava { options.encoding = 'UTF-8' }
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }

@ -3,7 +3,7 @@ dependencies {
compileOnly project(':api')
implementation project(path: ':common', configuration: 'shadow')
compileOnly 'redis.clients:jedis:3.7.0'
compileOnly 'redis.clients:jedis:4.0.0'
implementation 'org.bstats:bstats-bukkit:2.2.1'
implementation 'de.themoep:minedown:1.7.1-SNAPSHOT'

@ -2,7 +2,7 @@ dependencies {
compileOnly project(':common')
implementation project(path: ':common', configuration: 'shadow')
compileOnly 'redis.clients:jedis:3.7.0'
compileOnly 'redis.clients:jedis:4.0.0'
implementation 'org.bstats:bstats-bungeecord:2.2.1'
implementation 'de.themoep:minedown:1.7.1-SNAPSHOT'
implementation 'net.byteflux:libby-bungee:1.1.5'

@ -156,7 +156,7 @@ public final class HuskSyncBungeeCord extends Plugin {
Library mySqlLib = Library.builder()
.groupId("mysql")
.artifactId("mysql-connector-java")
.version("8.0.25")
.version("8.0.27")
.build();
Library sqLiteLib = Library.builder()

@ -1,5 +1,5 @@
dependencies {
implementation 'redis.clients:jedis:3.7.0'
implementation 'redis.clients:jedis:4.0.0'
implementation 'com.zaxxer:HikariCP:5.0.0'
}

@ -77,6 +77,9 @@ public class MySQL extends Database {
dataSource.setUsername(username);
dataSource.setPassword(password);
// Set data source driver path
dataSource.setDriverClassName("com.mysql.cj.jdbc.Driver");
// Set various additional parameters
dataSource.setMaximumPoolSize(hikariMaximumPoolSize);
dataSource.setMinimumIdle(hikariMinimumIdle);

@ -2,7 +2,7 @@ dependencies {
compileOnly project(':common')
implementation project(path: ':common', configuration: 'shadow')
compileOnly 'redis.clients:jedis:3.7.0'
compileOnly 'redis.clients:jedis:4.0.0'
implementation 'org.bstats:bstats-velocity:2.2.1'
implementation 'de.themoep:minedown-adventure:1.7.1-SNAPSHOT'
implementation 'net.byteflux:libby-velocity:1.1.5'

@ -43,7 +43,7 @@ import static me.william278.husksync.HuskSyncVelocity.VERSION;
public class HuskSyncVelocity {
// Plugin version
public static final String VERSION = "1.2";
public static final String VERSION = "1.2.1";
// Velocity bStats ID (different from Bukkit and BungeeCord)
private static final int METRICS_ID = 13489;
@ -208,7 +208,7 @@ public class HuskSyncVelocity {
Library mySqlLib = Library.builder()
.groupId("mysql")
.artifactId("mysql-connector-java")
.version("8.0.25")
.version("8.0.27")
.build();
Library sqLiteLib = Library.builder()

Loading…
Cancel
Save