Slackbot
04/04/2023, 2:21 PMThomas Broyer
04/04/2023, 2:27 PMincludeBuild
it in pluginManagement
in your settings.gradle.kts
and apply it; see https://github.com/gradle/gradle, and its build-logic-commons and build-logic-settings, used by the root project and build-logic)
It's indeed much easier with a TOML file, and I'd say that unless you have specific needs you should probably use a TOML file.Javi
04/04/2023, 2:40 PMfrom(files(../gradle/libs.versions.toml)
Igor Wojda
04/04/2023, 2:44 PMdependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("kotlinVersion", "1.8.20")
plugin("springframework-boot", "org.springframework.boot").version("3.0.5")
Javi
04/04/2023, 2:45 PMJavi
04/04/2023, 2:46 PMVampire
04/04/2023, 3:15 PM