|
||||||||
|
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-8) support native lib... Ajay Deshwal (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Ajay Deshwal (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Tony Chemit (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Will Tatam (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Jeroen Peelaerts (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Ajay Deshwal (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Ajay Deshwal (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Will Tatam (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Ajay Deshwal (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Ajay Deshwal (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Jeroen Peelaerts (JIRA)
- [mojo-dev] [jira] (MWEBSTART-8) support nativ... Ajay Deshwal (JIRA)

I needed the native library support in webstart plugin while developing an swt appliation.
I have added the feature for jnlp-download-servlet goal which can be easily be extended to other goals.
The configuration looks like following:
<jnlpFile> ........ <nativeDependencies> <nativeDependency> <os>Linux</os> <arch>x86</arch> <nativeResources> <nativeResource> <resourceType>nativelib</resourceType> <groupId>${swt.groupId}</groupId> <artifactId>org.eclipse.swt.gtk.linux.native.x86</artifactId> <version>${swt.version}</version> </nativeResource> <nativeResource> <resourceType>jar</resourceType> <groupId>${swt.groupId}</groupId> <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId> <version>${swt.version}</version> </nativeResource> </nativeResources> </nativeDependency> <nativeDependency> <os>Linux</os> <arch>x86_64</arch> <nativeResources> <nativeResource> <resourceType>jar</resourceType> <groupId>${swt.groupId}</groupId> <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId> <version>${swt.version}</version> </nativeResource> </nativeResources> </nativeDependency> </nativeDependencies> ....... </jnlpFile>