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
Spring Boot 3.0 uses Groovy 4. This causes issues while using it together with liquibase-groovy-dsl which is still on Groovy 3.
To make the issue worse in Groovy 4.0, the groupId of the maven coordinates for Groovy have changed from org.codehaus.groovy to org.apache.groovy.
The text was updated successfully, but these errors were encountered:
I am unable to reproduce the issue now.
I worked around it by adding the following Gradle configuration:
modules {
module('org.codehaus.groovy:groovy') {
replacedBy('org.apache.groovy:groovy', 'conflicts with the current liquibase-groovy-dsl version')
}
}
What was happening was that I had two Groovy versions simultaneously in my application which was causing errors.
Both org.codehaus.groovy:groovy:3.0.15 (from the plugin) and org.apache.groovy:groovy:4.0.22 (from Spring) were in the classpath.
Spring Boot 3.0 uses Groovy 4. This causes issues while using it together with liquibase-groovy-dsl which is still on Groovy 3.
To make the issue worse in Groovy 4.0, the groupId of the maven coordinates for Groovy have changed from
org.codehaus.groovy
toorg.apache.groovy
.The text was updated successfully, but these errors were encountered: