Skip to content

Commit 0846060

Browse files
committed
Upgrade gradle version to 6.5.1
1 parent 95da5f5 commit 0846060

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

build.gradle

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ setTargetCompatibility(JavaVersion.VERSION_1_8)
2222

2323
// In this section you declare the dependencies for your production and test code
2424
dependencies {
25+
2526
// The production code uses the SLF4J logging API at compile time
26-
compile 'org.slf4j:slf4j-api:1.7.7'
27-
compile 'com.google.guava:guava:18.0'
27+
implementation 'org.slf4j:slf4j-api:1.7.7'
28+
implementation 'com.google.guava:guava:18.0'
2829

2930
// Declare the dependency for your favourite test framework you want to use in your tests.
3031
// TestNG is also supported by the Gradle Test task. Just change the
3132
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
3233
// 'test.useTestNG()' to your build script.
33-
testCompile 'junit:junit:4.12'
34+
testImplementation 'junit:junit:4.12'
3435
}
3536

3637
/**
@@ -40,7 +41,3 @@ dependencies {
4041
tasks.matching { it instanceof Test }.all {
4142
testLogging.events = ["failed", "passed", "skipped"]
4243
}
43-
44-
task wrapper(type: Wrapper) {
45-
gradleVersion = '2.14.1'
46-
}

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-4.10.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip

0 commit comments

Comments
 (0)