Skip to content

Commit 50299cb

Browse files
authored
Merge pull request #270 from setchy/feature/269-graphql-java-15-support
Updating graphql-java-servlet to use graphql-java:15
2 parents 263fc86 + 6809d00 commit 50299cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PROJECT_LICENSE_URL = https://github.com/graphql-java-kickstart/spring-boot-grap
99
PROJECT_DEV_ID = apottere
1010
PROJECT_DEV_NAME = Andrew Potter
1111

12-
LIB_GRAPHQL_JAVA_VER = 14.0
12+
LIB_GRAPHQL_JAVA_VER = 15.0
1313
LIB_JACKSON_VER = 2.10.0
1414

1515
SOURCE_COMPATIBILITY = 1.8

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class TestUtils {
235235

236236
try {
237237
def registry = new SchemaParser().parse(new StringReader(sdl))
238-
def options = SchemaGenerator.Options.defaultOptions().enforceSchemaDirectives(false)
238+
def options = SchemaGenerator.Options.defaultOptions()
239239
return new SchemaGenerator().makeExecutableSchema(options, registry, wiring)
240240
} catch (SchemaProblem e) {
241241
assert false: "The schema could not be compiled : ${e}"

0 commit comments

Comments
 (0)