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

Commit 53d610c

Browse files
committed
Include transitive dependencies using api fix #403
1 parent d865b8c commit 53d610c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies {
22
api(project(':graphql-kickstart-spring-support'))
33

4-
compileOnly "com.graphql-java-kickstart:graphql-java-kickstart:$LIB_GRAPHQL_SERVLET_VER"
5-
compileOnly "org.springframework.boot:spring-boot-starter-webflux"
4+
api "com.graphql-java-kickstart:graphql-java-kickstart:$LIB_GRAPHQL_SERVLET_VER"
5+
api "org.springframework.boot:spring-boot-starter-webflux"
66
}

graphql-spring-boot-autoconfigure/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ dependencies {
2525
api "com.graphql-java-kickstart:graphql-java-servlet:$LIB_GRAPHQL_SERVLET_VER"
2626
api "com.graphql-java:graphql-java:$LIB_GRAPHQL_JAVA_VER"
2727

28-
implementation "org.springframework.boot:spring-boot-starter-websocket"
29-
implementation "org.springframework.boot:spring-boot-starter-web"
30-
implementation "org.springframework.boot:spring-boot-starter-actuator"
28+
api "org.springframework.boot:spring-boot-starter-websocket"
29+
api "org.springframework.boot:spring-boot-starter-web"
30+
api "org.springframework.boot:spring-boot-starter-actuator"
3131

3232
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"
3333
compileOnly "org.springframework.boot:spring-boot-configuration-processor"

0 commit comments

Comments
 (0)