-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the correct version of Logback to get the build working #49
Conversation
Something is pulling in an old version of logback, which has bindings targeting slf4j-api versions 1.7.x or earlier. Since we have moved to SLF4J 2.x, this causes an error. I believe the cause is an old version of logback in the micronaut-bom, but until that is brought up to date, this is a temporary workaround
The old settings plugin was pulling in an old snapshot, so we got an incompatible logback. This change switched to use the latest settings plugin, and imports the catalogs for the required sql and serde libs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does not data have a bom?
It does, but we get errors when trying to import the catalog https://ge.micronaut.io/s/dhmndf6vwgcoy/console-log?page=1#L3 @melix any idea what these mean? |
Cédric worked it out... I wasn't looking in the right repos 😓 Should be fixed now @sdelamo |
Kudos, SonarCloud Quality Gate passed! |
Merging this |
Something is pulling in an old version of logback, which has bindings targeting slf4j-api versions 1.7.x or earlier.
Since we have moved to SLF4J 2.x, this causes an error.
I believe the cause is an old version of logback in the micronaut-bom, but until that is brought up to date, this is a temporary workaround