Refactor how the Maven BOM for the SBDG project is created.

This commit is contained in:
John Blum
2022-02-17 19:33:00 -08:00
parent 6ab57409b8
commit 415e3401cc
4 changed files with 23 additions and 109 deletions

View File

@@ -1 +1,13 @@
import io.spring.gradle.convention.SpringModulePlugin
apply plugin: 'io.spring.convention.maven-bom'
dependencies {
constraints {
project.rootProject.allprojects { p ->
p.plugins.withType(SpringModulePlugin) {
api p
}
}
}
}