You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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: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.
The text was updated successfully, but these errors were encountered: