Ksawery Karwacki
08/29/2024, 9:37 AMgradle/libs.versions.toml with:
[versions]
micronaut = "4.2.0"
can i then refer to this in settings.gradle.kts like:
dependencyResolutionManagement {
versionCatalogs {
create("mn") {
from("io.micronaut.platform:micronaut-platform:${libs.versions.micronaut}")
}
}
}
I would have single source for all versions and catalogs used within projects, to easily handle pulling of those and have automated version management (renovate). I could potentially write convention settings plugin but this only moves problem to another layer.Vampire
08/29/2024, 12:51 PMPhilip W
08/29/2024, 1:06 PM