How can I provide Java properties to Maven webstart plugin to be used
when calling Jarsigner?

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>webstart-maven-plugin</artifactId>
    <configuration>
        <sign>
            <keystore>${keystore}</keystore>
            <storepass>${storepass}</storepass>
            <storetype>${storetype}</storetype>
            <alias>${sign.alias}</alias>
            <tsaLocation>${tsa}</tsaLocation>
        </sign>
    </configuration>
</plugin>

While using the maven-jarsigner-plugin I am able to supply properties
for my Proxy.
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jarsigner-plugin</artifactId>
    <configuration>
        <arguments>
            <argument>-J-Dhttps.proxyHost=proxy.company.com</argument>
            <argument>-J-Dhttps.proxyPort=3128</argument>
            <argument>-tsa</argument>
            <argument>${tsa}</argument>
        </arguments>
    </configuration>
</plugin>

I cannot find any similar settings for the maven webstart plugin.

Would not need to do this in my pom.xml if Jarsigner could use the
default Java proxy settings I have configured in Java Control Panel
Network Settings.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to