-
Notifications
You must be signed in to change notification settings - Fork 92
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
Expose org.graalvm.sdk:graal-sdk dependency #352
base: 5.0.x
Are you sure you want to change the base?
Conversation
This saves having to add it to every Grails 7 application
That dependency is not required. I am running a Grails 7 app and Asset Pipeline 5.0.1 and do not need it. |
This is only needed for compile time or development runtime. We wanted to explicitly exclude it from getting injected into the war/jar because its not required for production war builds. |
Without this dependency added to the grails 7 test apps:
the following has occurred across a number of test applications:
|
@codeconsole's Grails 7 application doesn't need this dependency because he removed.
And has it defined in one location in build.gradle:
Example where it was required: https://github.com/jamesfredley/grails-website-test We had planned to go that direction for |
so this issue is purely related to the gradle side? |
you do need it in grails run-app or dev but not in the final jar or war. need a way to inject this dependency but NOT package it in the war/jar |
We have a similar, probably related, issue using spring boot . A possible workaround is adding graalvm to
Using |
This saves having to add it to every Grails 7 application