File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,16 @@ setTargetCompatibility(JavaVersion.VERSION_1_8)
22
22
23
23
// In this section you declare the dependencies for your production and test code
24
24
dependencies {
25
+
25
26
// 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'
28
29
29
30
// Declare the dependency for your favourite test framework you want to use in your tests.
30
31
// TestNG is also supported by the Gradle Test task. Just change the
31
32
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
32
33
// 'test.useTestNG()' to your build script.
33
- testCompile ' junit:junit:4.12'
34
+ testImplementation ' junit:junit:4.12'
34
35
}
35
36
36
37
/**
@@ -40,7 +41,3 @@ dependencies {
40
41
tasks. matching { it instanceof Test }. all {
41
42
testLogging. events = [" failed" , " passed" , " skipped" ]
42
43
}
43
-
44
- task wrapper (type : Wrapper ) {
45
- gradleVersion = ' 2.14.1'
46
- }
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-4.10 .1-all .zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.5 .1-bin .zip
You can’t perform that action at this time.
0 commit comments