I need to configure Maven to:
a) compile the GWT module
b) copy the * .java files in the bank (so that they can be imported into another GWT module)
c) copy the result of the compilation step in the bank (so that it can be used on the server as is)
Does anyone know how to do this?
The main idea is that I want to separate the GWT project from my Spring MVC project and remove any dependencies that the Spring application may have in the banks and GWT plugins.
This way I can use GWT modules as pure javascript libraries and load them with org.springframework.js.resource.ResourceServlet directly from Jar files, while maintaining the flexibility of reusing modules in other GWT projects.
Any help would be appreciated.
source share