Hi Maveners,
The current JNLP plugin tests if the file given
by the property "maven.jnlp.signjar.store" exists to decide wether it needs to sign...
Trouble is... if the variable is not defined the "file" is then existing (namely, it's the build's directory) so that it tries to sign always which is not needed in principle.
So I added the following line in the plugin.jelly to make it work:
<ant:property name="maven.jnlp.signjar.store" value="an_impossible\/:value"/>
just before
<ant:available file="${maven.jnlp.signjar.store}" property="maven.jnlp.store.exists"/>
Which then only succeeds if the property is defined earlier.
Hope that helps.
Paul
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
