Skip to content

Commit da134b6

Browse files
author
Igor Drobiazko
authored
Merge pull request #12 from elasticio/passthrough-optimization
Passthrough optimization
2 parents 50f7b98 + d211fe8 commit da134b6

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

build.gradle

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,28 @@ version = '1.0.2'
1010
sourceCompatibility = 1.8
1111
targetCompatibility = 1.8
1212

13-
13+
sourceSets {
14+
main {
15+
java.outputDir = file('build/classes/main')
16+
}
17+
test {
18+
java.outputDir = file('build/classes/test')
19+
}
20+
}
1421

1522
repositories {
1623
maven {
1724
url "https://oss.sonatype.org/content/repositories/snapshots"
1825
}
1926
maven {
20-
url "https://oss.sonatype.org/content/repositories/ioelastic-1029"
27+
url "https://repo1.maven.org/maven2"
2128
}
2229
mavenCentral()
2330
mavenLocal()
2431
}
2532

2633
dependencies {
27-
compile "io.elastic:sailor-jvm:2.1.2"
34+
compile "io.elastic:sailor-jvm:2.1.3-SNAPSHOT"
2835
compile "org.glassfish.jersey.core:jersey-client:2.25.1"
2936
compile "org.glassfish.jersey.media:jersey-media-json-processing:2.25.1"
3037
}

0 commit comments

Comments
 (0)