File tree Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -5,21 +5,34 @@ apply plugin: 'eclipse'
5
5
apply plugin : ' java-library-distribution'
6
6
7
7
group = ' io.elastic'
8
- version = ' 1.0.0 '
8
+ version = ' 1.0.2 '
9
9
10
10
sourceCompatibility = 1.8
11
11
targetCompatibility = 1.8
12
12
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
+
13
23
repositories {
14
24
maven {
15
25
url " https://oss.sonatype.org/content/repositories/snapshots"
16
26
}
27
+ maven {
28
+ url " https://oss.sonatype.org/content/repositories/ioelastic-1029"
29
+ }
17
30
mavenCentral()
18
31
mavenLocal()
19
32
}
20
33
21
34
dependencies {
22
- compile " io.elastic:sailor-jvm:2.0.1 "
35
+ compile " io.elastic:sailor-jvm:2.1.2 "
23
36
compile " org.glassfish.jersey.core:jersey-client:2.25.1"
24
37
compile " org.glassfish.jersey.media:jersey-media-json-processing:2.25.1"
25
38
}
@@ -30,6 +43,6 @@ uploadArchives {
30
43
}
31
44
}
32
45
33
- task wrapper ( type : Wrapper ) {
34
- gradleVersion = ' 2.0 '
46
+ wrapper {
47
+ gradleVersion = ' 5.4.1 '
35
48
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
You can’t perform that action at this time.
0 commit comments