build: Move bom to root build script

This commit is contained in:
Alexander Brandes 2022-06-06 13:46:38 +02:00
parent dd48069756
commit 63b3d9df7d
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
3 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,6 @@ repositories {
} }
dependencies { dependencies {
implementation(platform("com.intellectualsites:bom:1.0.0-SNAPSHOT"))
api(projects.plotSquaredCore) api(projects.plotSquaredCore)
// Metrics // Metrics

View File

@ -1,7 +1,6 @@
import java.time.format.DateTimeFormatter import java.time.format.DateTimeFormatter
dependencies { dependencies {
implementation(platform("com.intellectualsites:bom:1.0.0-SNAPSHOT"))
// Expected everywhere. // Expected everywhere.
compileOnlyApi("org.checkerframework:checker-qual") compileOnlyApi("org.checkerframework:checker-qual")

View File

@ -64,6 +64,10 @@ subprojects {
plugin<EclipsePlugin>() plugin<EclipsePlugin>()
plugin<IdeaPlugin>() plugin<IdeaPlugin>()
} }
dependencies {
implementation(platform("com.intellectualsites:bom:1.0.0-SNAPSHOT"))
}
} }
allprojects { allprojects {