Skip to content

Commit 12b76e0

Browse files
committed
Upgrade to Gradle 7.3.2
This commit upgrades the build to use Gradle 7.3.2, instead of the older Gradle 6.6.1. As part if this upgrade we need to change the scope of some dependencies such that.. * `compile`, is now `api`. * `testCompile`, is now `testImplementation` Note that instead of using `api` you can use `implementation`. More information available at [Gradle Docs]. [Gradle Docs]: https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_separatio://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_separation
1 parent 4253050 commit 12b76e0

File tree

5 files changed

+247
-213
lines changed

5 files changed

+247
-213
lines changed

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import java.text.SimpleDateFormat
33
plugins {
44
id 'java'
55
id 'java-library'
6-
id 'maven'
76
id 'maven-publish'
87
id 'signing'
98
id "io.github.gradle-nexus.publish-plugin" version "1.0.0"
@@ -67,10 +66,10 @@ jar {
6766
}
6867

6968
dependencies {
70-
compile 'org.slf4j:slf4j-api:' + slf4jVersion
71-
testCompile 'org.slf4j:slf4j-simple:' + slf4jVersion
72-
testCompile "junit:junit:4.12"
73-
testCompile 'org.awaitility:awaitility:2.0.0'
69+
api 'org.slf4j:slf4j-api:' + slf4jVersion
70+
testImplementation 'org.slf4j:slf4j-simple:' + slf4jVersion
71+
testImplementation 'junit:junit:4.12'
72+
testImplementation 'org.awaitility:awaitility:2.0.0'
7473
testImplementation 'com.github.ben-manes.caffeine:caffeine:2.9.0'
7574
}
7675

gradle/wrapper/gradle-wrapper.jar

3.83 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 153 additions & 107 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)