From bcae9125e3ea40c54198e2b21be2beac5a498d15 Mon Sep 17 00:00:00 2001 From: Camelion Date: Mon, 9 Apr 2018 22:50:26 +0300 Subject: [PATCH] update build scripts fix bug with publication --- README.md | 4 ++-- build.gradle | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e8c0633..12bbb7d 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Add dependency into your `pom.xml` com.github.mangelion achord - 0.2.0 + 0.2.1 ``` @@ -19,7 +19,7 @@ Add dependency into your `pom.xml` Add following dependency into your `build.gradle` script ```groovy -compile "com.github.mangelion:achord:0.2.0" +compile "com.github.mangelion:achord:0.2.1" ``` # Usage diff --git a/build.gradle b/build.gradle index 210a020..91b3651 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { moduleName = "achord" - nettyVersion = "4.1.22.Final" + nettyVersion = "4.1.23.Final" } repositories { jcenter() @@ -32,7 +32,7 @@ dependencies { compile group: 'io.netty', name: 'netty-codec', version: nettyVersion compile group: 'org.jctools', name: 'jctools-core', version: '2.1.2' compile group: 'org.lz4', name: 'lz4-java', version: '1.4.1' - compile group: 'com.github.luben', name: 'zstd-jni', version: '1.3.3-4' + compile group: 'com.github.luben', name: 'zstd-jni', version: '1.3.4-2' } dependencies { @@ -43,7 +43,7 @@ dependencies { } dependencies { - testCompile group: 'io.projectreactor', name: 'reactor-test', version: '3.1.5.RELEASE' + testCompile group: 'io.projectreactor', name: 'reactor-test', version: '3.1.6.RELEASE' testCompile group: 'com.github.docker-java', name: 'docker-java', version: '3.0.14' testRuntimeOnly group: 'io.netty', name: 'netty-transport-native-epoll', version: nettyVersion testRuntimeOnly group: 'io.netty', name: 'netty-transport-native-kqueue', version: nettyVersion, classifier: 'osx-x86_64' @@ -52,8 +52,8 @@ dependencies { testCompile group: 'ru.yandex.clickhouse', name: 'clickhouse-jdbc', version: '0.1.39' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.1' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.1' } test {