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
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
The plugin defaults to translate jsps into java files but not compile those jsps for war file packaging. The tomcatJasper task is dependent on classes. Since classes runs first, your existing .java files will be turned into .class files, then your jsps will be turned into .java files. This is the correct ordering as your .class files may be required to translate or compile your jsp / jsp java files.
The problem is that you can't make tomcatJasper finalized by compileJava because it depends on classes which causes a circular dependency and won't work in gradle.
The plugin defaults to translate jsps into java files but not compile those jsps for war file packaging. The tomcatJasper task is dependent on classes. Since classes runs first, your existing .java files will be turned into .class files, then your jsps will be turned into .java files. This is the correct ordering as your .class files may be required to translate or compile your jsp / jsp java files.
The problem is that you can't make tomcatJasper finalized by compileJava because it depends on classes which causes a circular dependency and won't work in gradle.
The solution I eventually came up with is:
I believe this is what most people are wanting
The text was updated successfully, but these errors were encountered: