Skip to content

Commit 5993a02

Browse files
committed
Fix build with JDK >= 9
1 parent 5829339 commit 5993a02

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@
197197
<executions>
198198
<execution>
199199
<goals>
200+
<goal>generateStubs</goal>
200201
<goal>testGenerateStubs</goal>
201202
<goal>addTestSources</goal>
202203
<goal>testCompile</goal>

src/test/groovy/com/coxautodev/graphql/tools/EndToEndSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class EndToEndSpec extends Specification {
2626
GraphQL gql
2727

2828
def setupSpec() {
29-
GraphQLSchema schema = EndToEndSpecKt.createSchema()
29+
GraphQLSchema schema = EndToEndSpecHelperKt.createSchema()
3030

3131
batchedGql = GraphQL.newGraphQL(schema)
3232
.queryExecutionStrategy(new BatchedExecutionStrategy())

0 commit comments

Comments
 (0)