Reputation: 20633
I was wanting to add some components and generic code that I made in a separate project, to reuse in my other projects.
But I don't know how to lay out the packages (in the case of adding CSS and JavaScript files), modules, my own settings over juice/gin and etc...
I wonder if anyone knows exactly what the changes necessary to create a module from a common GWT project.
Thanks in advance.
Upvotes: 1
Views: 88
Reputation: 192
To reuse a GWT module:
Most important things to note are including all source code in the reusable GWT module JAR and then inheriting the module as you would any GWT module - See FAQ_GWTModuleInheritance
Upvotes: 1