From 8a1bf9c3886f61e27390e4cbf71b250c8de9f6fd Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Fri, 13 Nov 2020 11:51:09 +0100 Subject: [PATCH] Fix published POMs This commit removes the dependencyManagement section from the published POMs and aligns the starter dependencies with the official ones. --- build.gradle | 3 +++ spring-boot-starter-graphql-web/build.gradle | 1 + spring-boot-starter-graphql-webflux/build.gradle | 1 + 3 files changed, 5 insertions(+) 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' }