Skip to content

Commit

Permalink
update build scripts fix bug with publication
Browse files Browse the repository at this point in the history
  • Loading branch information
dpoluyanov committed Apr 9, 2018
1 parent 58f986e commit bcae912
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ Add dependency into your `pom.xml`
<dependency>
<groupId>com.github.mangelion</groupId>
<artifactId>achord</artifactId>
<version>0.2.0</version>
<version>0.2.1</version>
</dependency>
```

## Gradle

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
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
moduleName = "achord"
nettyVersion = "4.1.22.Final"
nettyVersion = "4.1.23.Final"
}
repositories {
jcenter()
Expand Down Expand Up @@ -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 {
Expand All @@ -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'
Expand All @@ -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 {
Expand Down

0 comments on commit bcae912

Please sign in to comment.