@@ -42,15 +42,15 @@ repositories {
42
42
configurations {
43
43
pluginLibs
44
44
45
- compile {
45
+ implementation {
46
46
extendsFrom pluginLibs
47
47
}
48
48
}
49
49
50
50
dependencies {
51
- compile ' org.codehaus.groovy:groovy-all:2.3.11'
52
- testCompile group : ' junit' , name : ' junit' , version : ' 4.12'
53
- compile group : ' org.rundeck' , name : ' rundeck-core' , version : ' 3.3.+'
51
+ implementation ' org.codehaus.groovy:groovy-all:2.3.11'
52
+ testImplementation group : ' junit' , name : ' junit' , version : ' 4.12'
53
+ implementation group : ' org.rundeck' , name : ' rundeck-core' , version : ' 3.3.+'
54
54
pluginLibs (group : ' com.microsoft.azure' , name : ' azure' , version : ' 1.3.0' ){
55
55
exclude group : " com.fasterxml.jackson.core"
56
56
}
@@ -64,10 +64,10 @@ dependencies {
64
64
pluginLibs group : ' com.microsoft.azure' , name : ' azure-keyvault-core' , version : ' 1.0.0'
65
65
66
66
67
- testCompile " org.codehaus.groovy:groovy-all:2.3.7"
68
- testCompile " org.spockframework:spock-core:0.7-groovy-2.0"
69
- testCompile " cglib:cglib-nodep:2.2.2"
70
- testCompile ' org.objenesis:objenesis:1.4'
67
+ testImplementation " org.codehaus.groovy:groovy-all:2.3.7"
68
+ testImplementation " org.spockframework:spock-core:0.7-groovy-2.0"
69
+ testImplementation " cglib:cglib-nodep:2.2.2"
70
+ testImplementation ' org.objenesis:objenesis:1.4'
71
71
72
72
constraints {
73
73
pluginLibs(" com.squareup.retrofit2:adapter-rxjava:2.6.1" ) {
0 commit comments