-
Notifications
You must be signed in to change notification settings - Fork 11
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
fix(deps): adjust dependencies required for grails 7 #395
Conversation
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.
I don't need that dependency to start?
…e plugin in build.gradle only implementation("com.bertramlabs.plugins:asset-pipeline-gradle:5.0.1") in buildSrc/build.gradle was requiring the extra graal-sdk dependency
I am not sure |
Once that is in place, we will remove it here. 7.0.0-SNAPSHOT is currently an option on start.grails.org and this enables the generated application to start, for now. |
These changes are currently required to start a grails 7 web project.
The
graal-sdk
dependency will be handled as follows: bertramdev/asset-pipeline#352 (comment)After removing the asset-pipeline Gradle plugin from
buildSrc/build.gradle
andsetting.gradle
and defining it in one locationbuild.gradle
, thegraal-sdk
dependency is no longer needed.The larger consolidation of buildSrc, settings.gradle and build.gradle will occur on #347