Fix published POMs

This commit removes the dependencyManagement section from the published
POMs and aligns the starter dependencies with the official ones.
This commit is contained in:
Brian Clozel
2020-11-13 11:51:09 +01:00
parent 1ff1d354e0
commit 8a1bf9c388
3 changed files with 5 additions and 0 deletions

View File

@@ -27,6 +27,9 @@ subprojects {
dependencies {
dependency 'com.graphql-java:graphql-java:15.0'
}
generatedPomCustomization {
enabled = false
}
}
dependencies {

View File

@@ -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'
}

View File

@@ -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'
}