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 26, 2022. It is now read-only.
The problem I see is that the compiled classes from the library project do not go into web-app/build/classes, but are generated directly in the source tree of the war project: web-app/src/main/WEB-INF/classes, which is really bad!
It seems that I need to set some property in my web-app/build.gradle to tell it where to place the compile results from the imported library... Something like this (which does not work!):
At this point though, I am not sure if this is plug-in's fault. There are some linkers/codegenerators at play in my case that I suspect too.
Also note, that the web-shared project does not need to anything but an ordinary java project with GWT structure ( e.g you can skip the gwt plugin stuff), something not very obvious from the example...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
If my understanding from the war-using-library example is correct, if one has two projects like:
Then in the war project gradle file (web-app/build.gradle), the shared library can be incorporated like this:
The problem I see is that the compiled classes from the library project do not go into web-app/build/classes, but are generated directly in the source tree of the war project: web-app/src/main/WEB-INF/classes, which is really bad!
It seems that I need to set some property in my web-app/build.gradle to tell it where to place the compile results from the imported library... Something like this (which does not work!):
Any idea what is going on and how to fix it? Could this be GWT 2.8 issue?Thanks!
The text was updated successfully, but these errors were encountered: