-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gwt-app should optionally publish a "deploy" artifact #9
Comments
Hello, are there any plans to solve and release this enhancement? |
No short-term plan, no. Please experiment with the maven-assembly-plugin and report your experience here (should this be a ZIP? a JAR? how do you actually use it? etc.) |
We have multi-module projects, where the shared project is build as gwt-lib and client project as gwt-app. The server project creates an overlay war artifact based on client.war. Perhaps this is not the intent of this issue, but it works. The only thing to change in your plugin is to also package the gwt/deploy folder in the client.war. |
Or maybe you could “just” configure the plugin with: <deploy>${project.build.directory}/${project.build.finalName}</deploy> instead of the |
Also works and is a little bit smarter! Thank you! |
Currently, the generated
-deploy
files are lost. It should be possible to have them in a JAR, ZIP or WAR with adeploy
classifier so you can use e.g. stacktrace deobfuscation.Workaround: use the
maven-assembly-plugin
.The text was updated successfully, but these errors were encountered: