Files
spring-boot-data-geode/spring-geode-bom/spring-geode-bom.gradle
John Blum fb9a5d5881 Add 'org.springframework.geode:spring-geode-bom' (Maven BOM) to project.
The Maven BOM (Bill of Materials) will provide a simpler and consistent SBDG module version dependency management experience for users starting at start.spring.io, who have added the 'Spring for Apache Geode' dependency to build Spring Boot applications using Apache Geode.

Resolves gh-93.
2020-08-12 16:13:05 -07:00

15 lines
357 B
Groovy

import io.spring.gradle.convention.SpringMavenPlugin
apply plugin: 'io.spring.convention.bom'
apply from: MAVEN_POM_EDITOR_GRADLE
sonarqube.skipProject = true
project.rootProject.allprojects.each { p ->
p.plugins.withType(SpringMavenPlugin) {
if (!project.name.equals(p.name)) {
project.mavenBom.projects.add(p)
}
}
}