generated from micronaut-projects/micronaut-project-template
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
Hi!
Probably it's a stupid question, is it possible to get the version of grpc or jooq by importing the version catalog from this BOM?
Originally I used micronaut-bom
which was the part of the core project, but that version catalog doesn't have grpc/jooq versions, I should import them separately. But import micronaut-grpc-bom or micronaut-sql-bom I need to know the correct version, which is available in micronaut-bom, but which is not available in that Version Catalog. I'm not sure I have described the problem correctly, let me show some code to explain it:
dependencyResolutionManagement {
val micronautVersion: String by settings
versionCatalogs {
register("mn") {
from("io.micronaut:micronaut-bom:${micronautVersion}")
}
// and here I would like to add grpc/sql version catalog, which version I don't know yet, it's available in `micronaut-bom`.
}
}
Why do I need to know grpc or jooq versions? Because I want to sync these versions with their Gradle plugins and generate sources based on this version.
FrogDevelopper