Manage TomlJ's version in spring-boot-internal-dependencies

Closes gh-51618
This commit is contained in:
Andy Wilkinson
2026-09-08 09:25:56 +01:00
parent ad8f14e785
commit bb1ad4ce36
3 changed files with 10 additions and 2 deletions
@@ -66,7 +66,7 @@ dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
testImplementation("org.jetbrains.kotlin:kotlin-compiler-runner:$kotlinVersion")
testImplementation("org.jetbrains.kotlin:kotlin-daemon-client:$kotlinVersion")
testImplementation("org.tomlj:tomlj:1.0.0")
testImplementation("org.tomlj:tomlj")
testImplementation("tools.jackson.core:jackson-databind")
}
@@ -32,7 +32,7 @@ dependencies {
implementation("org.apache.commons:commons-compress")
implementation("org.apache.httpcomponents.client5:httpclient5")
implementation("org.springframework:spring-core")
implementation("org.tomlj:tomlj:1.0.0")
implementation("org.tomlj:tomlj")
implementation("tools.jackson.core:jackson-databind")
testImplementation(project(":test-support:spring-boot-test-support"))
@@ -246,6 +246,14 @@ bom {
]
}
}
library("TomlJ", "1.0.0") {
group("org.tomlj") {
modules = [
"tomlj"
]
}
}
}
dependencies {