On 4/4/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I am using maven-2.0.2 > > The dependencies are correctly in the repository. I have created the log and > can send you my pom.xml ... what is your email address? Reply to > [EMAIL PROTECTED] so I have your email address.
Jeff, I looked at your pom and log (the log was unfortunately somwhow truncated), but I think I know what's going on. You are trying to build a jar and create a jnlp distribution at the same time. Maven prefers/advocates the "one module one produced artifact" rule of thumb, so the webstart plugin was written with that in mind. I.e. it requires you to have your dependencies built and installed in your local repository when you try to build your jnlp distribution. You maybe already have the partnership jar in your local repository now, but I guess that maven doesn't take it into account as you are in a project that supposedly is going to produce this artifact again. To make use of the jnlp plugin, please create a second module. You will end up with something like. project/pom.xml project/partnership/pom.xml project/partnership/... project/partnership-jnlp/pom.xml project/partnership-jnlp/... If you find this limitating, please open an issue in Jira: http://jira.codehaus.org/secure/IssueNavigator.jspa?reset=true&mode=hide&pid=11062&sorter/order=DESC&sorter/field=priority&resolution=-1&component=12115 More documentation: http://mojo.codehaus.org/webstart-maven-plugin-parent/webstart-maven-plugin/howto.html Good luck, Jerome --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
