Hi Roy, That's interesting. Its a bit beyond my (very limited) area of Maven expertise.
I use the plugin by attaching it to the package phase. That works ok. But I've just tried invoking it from the command line directly like you do and it failed with the same problem. Maybe you could raise a JIRA if you've got a couple of miutes to spare. :) Cheers, Kevin "Roy Spenkelink" <[EMAIL PROTECTED]> 11/03/2008 11:47 Please respond to [email protected] To [email protected] cc Subject Re: [mojo-user] Re: webstart plugin: trouble migrating from alpha1 to alpha2 Hi Kevin, Tried it, but somehow my local repository is filled again with the alpha 1 version after `mvn clean webstart:jnlp`. [INFO] Searching repository for plugin with prefix: 'webstart'. [INFO] artifact org.codehaus.mojo:webstart-maven-plugin: checking for updates from ***** [INFO] artifact org.codehaus.mojo:webstart-maven-plugin: checking for updates from ***** Downloading: http://repo1.maven.org/maven2/org/codehaus/mojo/webstart-maven-plugin/1.0-alpha-1/webstart-maven-plugin-1.0-alpha-1.pom 4K downloaded ...... Greetings, Roy On Mon, Mar 10, 2008 at 3:18 PM, Kevin Stembridge <[EMAIL PROTECTED] > wrote: Hi Roy, Glad you found a solution. I'm doing a little bit of work on the webstart plugin. It seems to me that things should work without resorting to the settings.xml file. If you've got the time and the curiosity, could you try reverting your settings.xml file, clearing out the org/codehaus/mojo part of your local maven repo and trying the build again. No worries if you can't get around to it. Cheers, Kevin "Roy Spenkelink" <[EMAIL PROTECTED]> 10/03/2008 13:55 Please respond to [email protected] To [email protected] cc Subject [mojo-user] Re: webstart plugin: trouble migrating from alpha1 to alpha2 Problem fixed. Apparently maven resolved the plugin prefix `webstart` to the alpha1 version. The search algorithm looks in group org.codehaus.mojo but not in org.codehaus.mojo.webstart. I fixed this by adding the group in my settings.xml: <settings> ... <pluginGroups> <pluginGroup>org.codehaus.mojo.webstart</pluginGroup> </pluginGroups> <settings> --- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Please refer to http://www.db.com/en/content/eu_disclosures.htm for additional EU corporate and regulatory disclosures. --- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Please refer to http://www.db.com/en/content/eu_disclosures.htm for additional EU corporate and regulatory disclosures.
