Skip to content

Commit 84b247d

Browse files
[API-8259] Updates Gradle version to 8.14 (#121)
1 parent a4ff904 commit 84b247d

File tree

5 files changed

+231
-153
lines changed

5 files changed

+231
-153
lines changed

build.gradle

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,14 @@ compileTestJava {
2121
}
2222

2323
dependencies {
24-
testCompile group: 'junit', name: 'junit', version: '4.11'
25-
testCompile group: 'org.skyscreamer', name: 'jsonassert', version: '1.3.0'
26-
testCompile group: 'com.squareup.okhttp3', name: 'mockwebserver', version: '4.10.0'
27-
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
28-
compile 'com.google.code.gson:gson:2.10'
29-
compile 'com.squareup.okhttp3:okhttp:4.12.0'
30-
compile 'com.squareup.okio:okio:3.6.0'
31-
compile 'commons-codec:commons-codec:1.15'
32-
}
33-
34-
task wrapper(type: Wrapper) {
35-
gradleVersion = '3.1'
24+
testImplementation group: 'junit', name: 'junit', version: '4.11'
25+
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.3.0'
26+
testImplementation group: 'com.squareup.okhttp3', name: 'mockwebserver', version: '4.10.0'
27+
testImplementation group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
28+
implementation 'com.google.code.gson:gson:2.10'
29+
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
30+
implementation 'com.squareup.okio:okio:3.6.0'
31+
implementation 'commons-codec:commons-codec:1.15'
3632
}
3733

3834
buildscript {
@@ -42,12 +38,12 @@ buildscript {
4238
}
4339

4440
task sourceJar(type: Jar) {
45-
classifier "sources"
41+
archiveClassifier.set("sources")
4642
from sourceSets.main.allSource
4743
}
4844

4945
task javaDocJar(type: Jar) {
50-
classifier "javadoc"
46+
archiveClassifier.set("javadoc")
5147
from javadoc
5248
}
5349

@@ -180,6 +176,6 @@ model {
180176

181177
distributions {
182178
main {
183-
baseName = 'sift-java'
179+
distributionBaseName = 'sift-java'
184180
}
185181
}

gradle/wrapper/gradle-wrapper.jar

7.83 KB
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Nov 21 13:08:48 CST 2016
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-all.zip

0 commit comments

Comments
 (0)