Skip to content

Commit acaa8ac

Browse files
authored
Merge pull request #418 from graphql-java-kickstart/renovate/org.spockframework-spock-core-2.x
chore(deps): update dependency org.spockframework:spock-core to v2.1-groovy-3.0
2 parents 4a6335c + a375d5e commit acaa8ac

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

gradle.properties

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ version=13.0.0-SNAPSHOT
22
group=com.graphql-java-kickstart
33
PROJECT_NAME=graphql-java-servlet
44
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
66
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
1010
LIB_GRAPHQL_JAVA_VER=18.0
1111
LIB_JACKSON_VER=2.13.2
1212
LIB_SLF4J_VER=1.7.36
1313
LIB_LOMBOK_VER=1.18.22
1414
SOURCE_COMPATIBILITY=1.8
1515
TARGET_COMPATIBILITY=1.8
16-
GRADLE_WRAPPER_VER=7.0

graphql-java-servlet/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232

3333
// Unit testing
3434
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"
3636
testRuntimeOnly "cglib:cglib-nodep:3.3.0"
3737
testRuntimeOnly "org.objenesis:objenesis:3.2"
3838
testImplementation "org.slf4j:slf4j-simple:$LIB_SLF4J_VER"

graphql-java-servlet/src/test/groovy/graphql/kickstart/servlet/TestUtils.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import graphql.schema.idl.SchemaGenerator
1414
import graphql.schema.idl.SchemaParser
1515
import graphql.schema.idl.TypeRuntimeWiring
1616
import graphql.schema.idl.errors.SchemaProblem
17-
import org.jetbrains.annotations.NotNull
17+
import lombok.NonNull
1818

1919
import java.util.concurrent.Executor
2020
import java.util.concurrent.atomic.AtomicReference
@@ -105,7 +105,7 @@ class TestUtils {
105105
private static Executor executor() {
106106
new Executor() {
107107
@Override
108-
void execute(@NotNull Runnable command) {
108+
void execute(@NonNull Runnable command) {
109109
command.run()
110110
}
111111
}

0 commit comments

Comments
 (0)