|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [mojo-dev] [jira] (MWEBSTART-222) Add support for -ts... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- Re: [mojo-dev] [jira] (MWEBSTART-222) Add sup... Tony Chemit
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... James Olsen (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Wim Bervoets (JIRA)
- [mojo-dev] [jira] (MWEBSTART-222) Add support for... Tony Chemit (JIRA)

Works ok when using <tsaLocation>http://timestamp.comodoca.com/rfc3161</tsaLocation>
I have however a problem with missing MANIFEST.MF entries with this version.
(eg.
<updatedManifestEntries>
<Permissions>all-permissions</Permissions>
<Codebase>*</Codebase>
<Trusted-Library>true</Trusted-Library>
<Application-Name>MyApp</Application-Name>
</updatedManifestEntries>
doesn't take effect anymore.
Any ideas?
Here is my config
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>webstart-maven-plugin</artifactId> <version>1.0-beta-5-SNAPSHOT</version> <executions> <execution> <id>package</id> <phase>package</phase> <goals> <goal>jnlp-inline</goal> </goals> </execution> </executions> <configuration> <outputDirectoryName>app</outputDirectoryName> <jnlp> <outputFile>myapp.jnlp</outputFile> <mainClass>com.MainApp</mainClass> </jnlp> <libPath>lib</libPath> <!-- updatedManifestEntries supported in http://jira.codehaus.org/browse/MWEBSTART-213 --> <updatedManifestEntries> <Permissions>all-permissions</Permissions> <Codebase>*</Codebase> <Trusted-Library>true</Trusted-Library> <Application-Name>MyApp</Application-Name> </updatedManifestEntries> <sign> <keystore>code-signing-certificate.pfx</keystore> <storetype>pkcs12</storetype> <storepass> .. </storepass> <keypass>.. </keypass> <alias>..</alias> <tsaLocation>http://timestamp.comodoca.com/rfc3161</tsaLocation> <verify>true</verify> <!-- verify that the signing operation succeeded --> <!-- KEYSTORE MANAGEMENT --> <keystoreConfig> <delete>false</delete> <!-- delete the keystore --> <gen>false</gen> <!-- optional shortcut to generate the store. --> </keystoreConfig> </sign> <unsign>true</unsign> <!-- unsign already signed packages and sign them with own key --> <pack200> <enabled>false</enabled> </pack200> <gzip>false</gzip> <outputJarVersions>false</outputJarVersions> <verbose>true</verbose> <excludeTransitive>true</excludeTransitive> </configuration> </plugin>