I am new to Maven, and have it working relatively well for managing dependencies, and simple builds. I am trying to get the Maven Webstart plugin working for me, but am having several (probably simple) problems.
Right now when I execute the " mvn webstart:jnlp goal " it is fails to download the artifacts. It fails with the following message: [ERROR] BUILD ERROR [INFO] ----------------------------------------------------- --- [INFO] Failed to resolve artifact. GroupId: org.codehaus.mojo ArtifactId: mojo Version: 7 Reason: Unable to download the artifact from any repository org.codehaus.mojo:mojo:pom:7 from the specified remote repositories: central (http://snapshots.maven.codehaus.org/maven2) I am using my own respository for artifacts, so I setup a pluginRepository in my pom.xml as follows (hope it displays): <pluginRepositories> <pluginRepository> <id>central</id> <name>Maven Plugin Repository</name> <url>http://snapshots.maven.codehaus.org/maven2</url> <!-- <url>http://maven.codehaus.org/maven2</url> --> <layout>default</layout> <snapshots> <enabled>true</enabled> </snapshots> <!-- <releases> <updatePolicy>never</updatePolicy> </releases> --> </pluginRepository> </pluginRepositories> Any help would be much appreciated. -- Jeff -- View this message in context: http://www.nabble.com/Maven-Webstart-Plugin-t1371503.html#a3679895 Sent from the Maven - Users forum at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
