diff --git a/build.gradle b/build.gradle index d3e0c28b..3f31cb9a 100644 --- a/build.gradle +++ b/build.gradle @@ -27,6 +27,9 @@ subprojects { dependencies { dependency 'com.graphql-java:graphql-java:15.0' } + generatedPomCustomization { + enabled = false + } } dependencies { diff --git a/spring-boot-starter-graphql-web/build.gradle b/spring-boot-starter-graphql-web/build.gradle index b7071f3c..42d60e90 100644 --- a/spring-boot-starter-graphql-web/build.gradle +++ b/spring-boot-starter-graphql-web/build.gradle @@ -2,5 +2,6 @@ description = "Starter for building GraphQL Java applications with Spring MVC" dependencies { api project(':spring-graphql-web') + api 'org.springframework.boot:spring-boot-starter' api 'org.springframework.boot:spring-boot-starter-web' } diff --git a/spring-boot-starter-graphql-webflux/build.gradle b/spring-boot-starter-graphql-webflux/build.gradle index 718f62dc..36fd382f 100644 --- a/spring-boot-starter-graphql-webflux/build.gradle +++ b/spring-boot-starter-graphql-webflux/build.gradle @@ -2,5 +2,6 @@ description = "Starter for building GraphQL Java applications with Spring WebFlu dependencies { api project(':spring-graphql-web') + api 'org.springframework.boot:spring-boot-starter' api 'org.springframework.boot:spring-boot-starter-webflux' }