File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
src/test/groovy/graphql/kickstart/servlet Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,14 @@ version=13.0.0-SNAPSHOT
2
2
group =com.graphql-java-kickstart
3
3
PROJECT_NAME =graphql-java-servlet
4
4
PROJECT_DESC =GraphQL Java Kickstart
5
- PROJECT_GIT_REPO_URL =https://github.com/graphql-java-kickstart/graphql-spring-boot
5
+ PROJECT_GIT_REPO_URL =https://github.com/graphql-java-kickstart/graphql-java-servlet
6
6
PROJECT_LICENSE =MIT
7
- PROJECT_LICENSE_URL =https://github.com/graphql-java-kickstart/spring-boot-graphql /blob/master/LICENSE.md
8
- PROJECT_DEV_ID =apottere
9
- PROJECT_DEV_NAME =Andrew Potter
7
+ PROJECT_LICENSE_URL =https://github.com/graphql-java-kickstart/spring-java-servlet /blob/master/LICENSE.md
8
+ PROJECT_DEV_ID =oliemansm
9
+ PROJECT_DEV_NAME =Michiel Oliemans
10
10
LIB_GRAPHQL_JAVA_VER =18.0
11
11
LIB_JACKSON_VER =2.13.2
12
12
LIB_SLF4J_VER =1.7.36
13
13
LIB_LOMBOK_VER =1.18.22
14
14
SOURCE_COMPATIBILITY =1.8
15
15
TARGET_COMPATIBILITY =1.8
16
- GRADLE_WRAPPER_VER =7.0
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ dependencies {
32
32
33
33
// Unit testing
34
34
testImplementation " org.codehaus.groovy:groovy-all:3.0.10"
35
- testImplementation " org.spockframework:spock-core:2.0 -groovy-3.0"
35
+ testImplementation " org.spockframework:spock-core:2.1 -groovy-3.0"
36
36
testRuntimeOnly " cglib:cglib-nodep:3.3.0"
37
37
testRuntimeOnly " org.objenesis:objenesis:3.2"
38
38
testImplementation " org.slf4j:slf4j-simple:$LIB_SLF4J_VER "
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import graphql.schema.idl.SchemaGenerator
14
14
import graphql.schema.idl.SchemaParser
15
15
import graphql.schema.idl.TypeRuntimeWiring
16
16
import graphql.schema.idl.errors.SchemaProblem
17
- import org.jetbrains.annotations.NotNull
17
+ import lombok.NonNull
18
18
19
19
import java.util.concurrent.Executor
20
20
import java.util.concurrent.atomic.AtomicReference
@@ -105,7 +105,7 @@ class TestUtils {
105
105
private static Executor executor () {
106
106
new Executor () {
107
107
@Override
108
- void execute (@NotNull Runnable command ) {
108
+ void execute (@NonNull Runnable command ) {
109
109
command. run()
110
110
}
111
111
}
You can’t perform that action at this time.
0 commit comments