We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Assets from plugin are not packaged by default, need to add packagePlugin = true in build.gradle file
Using grails cli
Both assets should be found
the asset from the plugin : localhost:8080/assets/example.svg is found but : the asset from the app : localhost:8080/assets/example-2.svg is not found
unless : assets { ... packagePlugin = true ... } is added to the buld.gradle of the plugin
The text was updated successfully, but these errors were encountered:
For WEB_PLUGIN set packagePlugin prop
e6b2684
Fixes #197
https://start.grails.org still generates plugins without packagePlugin = true in the build.gradle - when will this fix go live on there?
packagePlugin = true
build.gradle
Sorry, something went wrong.
This is will be resolved with Grails 6.1.0 or you can test with 6.1.0-SNAPSHOT.
puneetbehl
Successfully merging a pull request may close this issue.
Description
Assets from plugin are not packaged by default, need to add packagePlugin = true in build.gradle file
Task List
Steps to Reproduce
Using grails cli
Expected Behaviour
Both assets should be found
Actual Behaviour
the asset from the plugin : localhost:8080/assets/example.svg is found
but :
the asset from the app : localhost:8080/assets/example-2.svg is not found
unless :
assets {
...
packagePlugin = true
...
}
is added to the buld.gradle of the plugin
Environment Information
Example Application
The text was updated successfully, but these errors were encountered: