I\'m looking for a way to create jar files containing both .class and .java files for GWT modules. Anyone knows how that could be achieved?
Superthanks!
// N
Edit your resources section in your pom.xml.
... src/main/resources src/main/java **/*.java **/*.gwt.xml ...
You can also edit the maven-jar-plugin to exclude them from the final JAR.
maven-jar-plugin **/*.java **/*.gwt.xml