Hi,
If I then modify mywebapp-server/pom.xml to have:
<packaging>jar</packaging>
(instead of war)
I then get an executable jar, which I can run:
java -jar mywebapp-server/target/mywebapp.jar
The executable JAR runs the embedded Tomcat server, which contains the index.html + css (inside the mywebapp.jar in BOOT-INF\classes\public), however, all the GWT files are in BOOT-INF\lib\mywebapp-client-HEAD-SNAPSHOT.war) so it never sees them. As a result, the app only shows the html, and nothing else works.
Has anyone made a GWT app as an executable JAR? Or any suggestions how to do it?
Thanks in advance.