build: Switch to bill of materials (#3653)

* build: Switch to managed dependencies

* build: Move bom to root build script

* build: Update bom

* Update build.gradle.kts

* fix: Use the correct bom version
This commit is contained in:
Alexander Brandes
2022-06-09 12:57:37 +02:00
committed by GitHub
parent 0a32268784
commit 9ffa935c0c
4 changed files with 23 additions and 44 deletions

View File

@ -34,7 +34,7 @@ allprojects {
maven {
name = "Sonatype OSS (S01)"
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots")
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
maven {
@ -64,6 +64,10 @@ subprojects {
plugin<EclipsePlugin>()
plugin<IdeaPlugin>()
}
dependencies {
implementation(platform("com.intellectualsites.bom:bom-1.18.x:1.2"))
}
}
allprojects {