Skip to content

Commit 2e50fbd

Browse files
author
Igor Drobiazko
authored
Merge pull request #9 from elasticio/threads
Threads
2 parents a813f13 + 31fa466 commit 2e50fbd

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

build.gradle

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,34 @@ apply plugin: 'eclipse'
55
apply plugin: 'java-library-distribution'
66

77
group = 'io.elastic'
8-
version = '1.0.0'
8+
version = '1.0.2'
99

1010
sourceCompatibility = 1.8
1111
targetCompatibility = 1.8
1212

13+
14+
sourceSets {
15+
main {
16+
java.outputDir = file('build/classes/main')
17+
}
18+
test {
19+
java.outputDir = file('build/classes/test')
20+
}
21+
}
22+
1323
repositories {
1424
maven {
1525
url "https://oss.sonatype.org/content/repositories/snapshots"
1626
}
27+
maven {
28+
url "https://oss.sonatype.org/content/repositories/ioelastic-1029"
29+
}
1730
mavenCentral()
1831
mavenLocal()
1932
}
2033

2134
dependencies {
22-
compile "io.elastic:sailor-jvm:2.0.1"
35+
compile "io.elastic:sailor-jvm:2.1.2"
2336
compile "org.glassfish.jersey.core:jersey-client:2.25.1"
2437
compile "org.glassfish.jersey.media:jersey-media-json-processing:2.25.1"
2538
}
@@ -30,6 +43,6 @@ uploadArchives {
3043
}
3144
}
3245

33-
task wrapper(type: Wrapper) {
34-
gradleVersion = '2.0'
46+
wrapper {
47+
gradleVersion = '5.4.1'
3548
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.0-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

0 commit comments

Comments
 (0)