Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 33316ff

Browse files
committed
Rely on upgrade graphql-java-tools library for maven fix #371
1 parent d19af26 commit 33316ff

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

example-graphql-tools/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ dependencies {
2121
implementation(project(":graphql-spring-boot-starter"))
2222
implementation(project(":graphiql-spring-boot-starter"))
2323
implementation(project(":voyager-spring-boot-starter"))
24-
implementation "com.graphql-java-kickstart:graphql-java-tools:$LIB_GRAPHQL_JAVA_TOOLS_VER"
2524

2625
implementation("org.springframework.boot:spring-boot-starter-web")
2726

example-webflux/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
*/
1919

2020
dependencies {
21-
compile(project(":graphql-kickstart-spring-boot-autoconfigure-webflux"))
22-
compile(project(":graphql-kickstart-spring-boot-autoconfigure-tools"))
21+
compile(project(":graphql-kickstart-spring-boot-starter-webflux"))
22+
compile(project(":graphql-kickstart-spring-boot-starter-tools"))
2323
compile(project(":voyager-spring-boot-starter"))
2424

2525
compile("org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER")

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ TARGET_COMPATIBILITY = 1.8
4040
### Dependencies
4141

4242
LIB_GRAPHQL_JAVA_VER = 14.0
43-
LIB_SPRING_BOOT_VER = 2.2.5.RELEASE
43+
LIB_SPRING_BOOT_VER = 2.2.6.RELEASE
4444
LIB_GRAPHQL_SERVLET_VER = 9.0.1
45-
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.0.1
45+
LIB_GRAPHQL_JAVA_TOOLS_VER = 6.0.2-SNAPSHOT
4646
LIB_APACHE_COMMONS_TEXT=1.8
4747
LIB_JSOUP_VER=1.12.2
4848
kotlin.version=1.3.70

graphql-kickstart-spring-boot-autoconfigure-tools/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ dependencies {
33
compileOnly "org.springframework.boot:spring-boot-configuration-processor"
44

55
api "com.graphql-java-kickstart:graphql-java-tools:$LIB_GRAPHQL_JAVA_TOOLS_VER"
6+
api "com.graphql-java:graphql-java:$LIB_GRAPHQL_JAVA_VER"
7+
68
implementation "org.springframework.boot:spring-boot-autoconfigure"
79

810
compileOnly "com.graphql-java-kickstart:graphql-java-servlet:$LIB_GRAPHQL_SERVLET_VER"

graphql-spring-boot-autoconfigure/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencies {
2323
implementation "org.springframework.boot:spring-boot-autoconfigure"
2424
api "com.graphql-java-kickstart:graphql-java-kickstart:$LIB_GRAPHQL_SERVLET_VER"
2525
api "com.graphql-java-kickstart:graphql-java-servlet:$LIB_GRAPHQL_SERVLET_VER"
26+
api "com.graphql-java:graphql-java:$LIB_GRAPHQL_JAVA_VER"
2627

2728
implementation "org.springframework.boot:spring-boot-starter-websocket"
2829
implementation "org.springframework.boot:spring-boot-starter-web"

0 commit comments

Comments
 (0)