@@ -94,21 +94,22 @@ configure(publishedProjects) {
94
94
}
95
95
96
96
dependencies {
97
- compile group : ' commons-codec' , name : ' commons-codec' , version : commonCodecVersion
97
+ implementation group : ' commons-codec' , name : ' commons-codec' , version : commonCodecVersion
98
98
99
- testCompile group : ' junit' , name : ' junit' , version : junitVersion
100
- testCompile group : ' org.mockito' , name : ' mockito-core' , version : mockitoVersion
101
- testCompile group : ' org.hamcrest' , name : ' hamcrest-all' , version : hamcrestVersion
102
- testCompile group : ' com.google.guava' , name : ' guava' , version : guavaVersion
99
+ testImplementation group : ' junit' , name : ' junit' , version : junitVersion
100
+ testImplementation group : ' org.mockito' , name : ' mockito-core' , version : mockitoVersion
101
+ testImplementation group : ' org.hamcrest' , name : ' hamcrest-all' , version : hamcrestVersion
102
+ testImplementation group : ' com.google.guava' , name : ' guava' , version : guavaVersion
103
103
104
104
// logging dependencies (logback)
105
- testCompile group : ' ch.qos.logback' , name : ' logback-classic' , version : logbackVersion
106
- testCompile group : ' ch.qos.logback' , name : ' logback-core' , version : logbackVersion
107
-
108
- testCompile group : ' com.google.code.gson' , name : ' gson' , version : gsonVersion
109
- testCompile group : ' org.json' , name : ' json' , version : jsonVersion
110
- testCompile group : ' com.googlecode.json-simple' , name : ' json-simple' , version : jsonSimpleVersion
111
- testCompile group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : jacksonVersion
105
+ testImplementation group : ' ch.qos.logback' , name : ' logback-classic' , version : logbackVersion
106
+ testImplementation group : ' ch.qos.logback' , name : ' logback-core' , version : logbackVersion
107
+ testImplementation ' org.mock-server:mockserver-netty:5.1.1'
108
+
109
+ testImplementation group : ' com.google.code.gson' , name : ' gson' , version : gsonVersion
110
+ testImplementation group : ' org.json' , name : ' json' , version : jsonVersion
111
+ testImplementation group : ' com.googlecode.json-simple' , name : ' json-simple' , version : jsonSimpleVersion
112
+ testImplementation group : ' com.fasterxml.jackson.core' , name : ' jackson-databind' , version : jacksonVersion
112
113
}
113
114
114
115
def docTitle = " Optimizely Java SDK"
0 commit comments