@@ -17,8 +17,8 @@ dependencies {
17
17
api(project(' :graphql-java-kickstart' ))
18
18
19
19
// Servlet
20
- compile ' javax.servlet:javax.servlet-api:3.1.0'
21
- compile ' javax.websocket:javax.websocket-api:1.1'
20
+ api ' javax.servlet:javax.servlet-api:3.1.0'
21
+ api ' javax.websocket:javax.websocket-api:1.1'
22
22
implementation " org.slf4j:slf4j-api:$LIB_SLF4J_VER "
23
23
24
24
// OSGi
@@ -29,15 +29,15 @@ dependencies {
29
29
compileOnly ' org.osgi:org.osgi.service.metatype.annotations:1.3.0'
30
30
compileOnly ' org.osgi:org.osgi.annotation:6.0.0'
31
31
32
- testCompile ' io.github.graphql-java:graphql-java-annotations:8.3'
32
+ testImplementation ' io.github.graphql-java:graphql-java-annotations:8.3'
33
33
34
34
// Unit testing
35
- testCompile " org.codehaus.groovy:groovy-all:2.4.1"
36
- testCompile " org.spockframework:spock-core:1.1-groovy-2.4-rc-3"
37
- testRuntime " cglib:cglib-nodep:3.2.4"
38
- testRuntime " org.objenesis:objenesis:2.5.1"
39
- testCompile " org.slf4j:slf4j-simple:$LIB_SLF4J_VER "
40
- testCompile ' org.springframework:spring-test:4.3.7.RELEASE'
41
- testRuntime ' org.springframework:spring-web:4.3.7.RELEASE'
42
- testCompile ' com.google.guava:guava:24.1.1-jre'
35
+ testImplementation " org.codehaus.groovy:groovy-all:2.4.1"
36
+ testImplementation " org.spockframework:spock-core:1.1-groovy-2.4-rc-3"
37
+ testRuntimeOnly " cglib:cglib-nodep:3.2.4"
38
+ testRuntimeOnly " org.objenesis:objenesis:2.5.1"
39
+ testImplementation " org.slf4j:slf4j-simple:$LIB_SLF4J_VER "
40
+ testImplementation ' org.springframework:spring-test:4.3.7.RELEASE'
41
+ testRuntimeOnly ' org.springframework:spring-web:4.3.7.RELEASE'
42
+ testImplementation ' com.google.guava:guava:24.1.1-jre'
43
43
}
0 commit comments