I'm using Maven for my build cycle, including using the maven-webstart-plugin to generate a jnlp file. This process signs the jars and creates a jnlp from a template (which is great), but then also creates a zip file of all the signed jars and the jnlp file (which might be helpful, but I don't want).
The docs for the maven-webstart-plugin aren't particularly comprehensive... http://mojo.codehaus.org/webstart/webstart-maven-plugin/jnlp-mojos-overview.html
In fact, I found stackoverflow the best source for useful information - e.g. Looking for Webstart Maven Plugin sample application
There seems to be a way to do this in the maven-webstart-plugin configuration - e.g. (from the examples above):
<plugins>
<plugin>
<groupId>org.codehaus.mojo.webstart</groupId>
<artifactId>webstart-maven-plugin</artifactId>
<configuration>
...
<pack200>true</pack200>
<gzip>true</gzip> <!-- default force when pack200 false, true when pack200 selected ?? -->
...
</configuration>
</plugin>
</plugins>
Does anyone know what the tag does?
I expected the < gzip > tag to allow one to exclude the creation of the zip file by setting it to < gzip > false < /gzip >, but my testing of this suggests that's not the case. In indeed that is not the case, does anyone know what the < gzip > tag does?
Finally, if those aren't the relevant tags, is it possible to prevent the creation of the zip file? If so, how?