-
Notifications
You must be signed in to change notification settings - Fork 64
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
Exception processing static resources from spring-security-ui #372
Comments
I see the same errors and in the deployed application the spring-security-ui is not working due to missing jquery functions in the webbrowser.
I am able to reproduce this in development mode when I set the Is there a way to overcome this problem? |
In the spring-security-ui repository is already a fix for this error, but it is not available as a release yet. So basically you need to compile the plugin by yourself. Basically they replaced the variables within filenames with static paths. |
A little bit more testing revealed to me, that the problem only occurs when I use the grails command, e.g. grails version: 3.1.10 |
+1 |
This wouls be a bug in the ui plugin
…On May 9, 2017 10:49 PM, "Valerius James" ***@***.***> wrote:
+1
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#372 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABaEnCwxD2D3eZ8JDx4OX5tgaWA423Qks5r4SWpgaJpZM4J2wMA>
.
|
I found an exception processing static resources from spring-security-ui plugin. To reproduce the issue you only need to create a fresh new grails project (I'm using Grails 3.1.10) and add the following dependencies:
I'm using the latest version of the plugin (
2.11.2
)Then just execute
./gradlew assetCompile
The first fail is with the file
spring-security-ui.css
although there are other files that are also failing.Until version
2.1.1
of gradle plugin the resources of the plugins were not processed so starting in that version theassetCompile
task fails. With this old version the filespring-security-ui.css
is processed correctly although the process fails in another file.In all the cases the build is successful so I'm wondering if this is really a problem. I've create a .war file, run the application from there and navigate and it seems everything it's working, so I'm not sure.
The text was updated successfully, but these errors were encountered: