[ http://jira.codehaus.org/browse/MWEBSTART-72?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=139145#action_139145 ]
Marius Shekow commented on MWEBSTART-72: ---------------------------------------- A workaround I found for this is to simply do this: {code:xml} <jarResource> <groupId>com.mycompany</groupId> <artifactId>bogus</artifactId> <version>1.0</version> </jarResource> <jarResource> <groupId>com.somecompany</groupId> <artifactId>someartifact</artifactId> <version>1.0</version> <includeInJnlp>false</includeInJnlp> </jarResource> Although this might still have the effect that the jar files ends up to be packaged in the webstart foder, it will at least not be listed inside the jnlp file. {code} > Provide the ability to specify exclusions for JarResource elements in the > JnlpDownloadServletMojo > ------------------------------------------------------------------------------------------------- > > Key: MWEBSTART-72 > URL: http://jira.codehaus.org/browse/MWEBSTART-72 > Project: Maven 2.x Webstart Plugin > Issue Type: Improvement > Components: jnlp-download-servlet > Affects Versions: 1.0-alpha-2 > Reporter: Kevin Stembridge > > The JnlpDownloadServletMojo uses JarResource configuration elements to > determine which artifacts to include in the bundle. > We need to be able to specify exclusions in a JarResource in the same way > that it can be done for a normal dependency. > i.e. > {code:xml} > <jarResource> > <groupId>com.mycompany</groupId> > <artifactId>bogus</artifactId> > <version>1.0</version> > <exclusions> > <exclusion> > <groupId>com.somecompany</groupId> > <artifactId>someartifact</artifactId> > </exclusion> > </exclusions> > </jarResource> > {code} -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email