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
The grails bom appears to be inconsistently applied when using a project with buildSrc. To get buildSrc to work, you have to:
add implementation platform("org.grails:grails-bom:$grailsVersion") or implementation"org.grails:grails-bom:$grailsVersion" to buildSrc/build.gradle
add the same to the project's build.gradle
This may only be an issue on projects with buildSrc. We saw this in grails-views & grails-redis. Views fixed this by excluding the bom, but redis fixed it by adding the above. What's worse, is this behavior is inconsistent.
The text was updated successfully, but these errors were encountered:
The grails bom appears to be inconsistently applied when using a project with buildSrc. To get buildSrc to work, you have to:
implementation platform("org.grails:grails-bom:$grailsVersion")
orimplementation"org.grails:grails-bom:$grailsVersion"
to buildSrc/build.gradleThis may only be an issue on projects with buildSrc. We saw this in grails-views & grails-redis. Views fixed this by excluding the bom, but redis fixed it by adding the above. What's worse, is this behavior is inconsistent.
The text was updated successfully, but these errors were encountered: