@@ -16,27 +16,29 @@ dependencies {
16
16
api(project(' :graphql-java-kickstart' ))
17
17
18
18
// Servlet
19
- api ' javax.servlet:javax.servlet-api:4.0.1'
20
- api ' javax.websocket:javax.websocket-api:1.1'
19
+ compileOnly ' javax.servlet:javax.servlet-api:4.0.1'
20
+ compileOnly ' javax.websocket:javax.websocket-api:1.1'
21
21
implementation " org.slf4j:slf4j-api:$LIB_SLF4J_VER "
22
22
23
23
// OSGi
24
24
compileOnly ' org.osgi:org.osgi.core:6.0.0'
25
25
compileOnly ' org.osgi:org.osgi.service.cm:1.6.1'
26
- compileOnly ' org.osgi:org.osgi.service.component:1.5.0 '
27
- compileOnly ' org.osgi:org.osgi.service.component.annotations:1.5.0 '
26
+ compileOnly ' org.osgi:org.osgi.service.component:1.5.1 '
27
+ compileOnly ' org.osgi:org.osgi.service.component.annotations:1.5.1 '
28
28
compileOnly ' org.osgi:org.osgi.service.metatype.annotations:1.4.1'
29
29
compileOnly ' org.osgi:org.osgi.annotation:6.0.0'
30
30
31
31
testImplementation ' io.github.graphql-java:graphql-java-annotations:9.1'
32
32
33
33
// Unit testing
34
- testImplementation " org.codehaus .groovy:groovy-all:3 .0.12"
35
- testImplementation " org.spockframework:spock-core:2.1 -groovy-3 .0"
34
+ testImplementation " org.apache .groovy:groovy-all:4 .0.12"
35
+ testImplementation " org.spockframework:spock-core:2.3 -groovy-4 .0"
36
36
testRuntimeOnly " cglib:cglib-nodep:3.3.0"
37
37
testRuntimeOnly " org.objenesis:objenesis:3.3"
38
38
testImplementation " org.slf4j:slf4j-simple:$LIB_SLF4J_VER "
39
39
testImplementation ' org.springframework:spring-test:5.3.22'
40
40
testRuntimeOnly ' org.springframework:spring-web:5.3.22'
41
41
testImplementation ' com.google.guava:guava:31.1-jre'
42
+ testImplementation ' javax.servlet:javax.servlet-api:4.0.1'
43
+ testImplementation ' javax.websocket:javax.websocket-api:1.1'
42
44
}
0 commit comments