Hello SiD, IIRC, you have to: configure the repositories to point to the mojo snapshot repo (cant remember the real address) or checkout the plugin and build it if it was never deployed.
So check in the guides : http://maven.apache.org/guides/mini/guide-multiple-repositories.html <repositories> <repository> <id>Maven Snapshots</id> <url>http://snapshots.maven.codehaus.org/maven2/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>Maven Snapshots</id> <url>http://snapshots.maven.codehaus.org/maven2/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </pluginRepository> </pluginRepositories> You may also add a plugin group element in your settings. (can't remember how - but there is some information about it in the mail list archive) Hope this will help Regards Raphaël 2006/3/21, SiD <tourment> <[EMAIL PROTECTED]>: > > Hey, > > I just installed Maven 2 from http://maven.apache.org/ > > I want to use the Maven Jalopy Plugin, I followed this link : > http://mojo.codehaus.org/jalopy-maven-plugin/howto.html > > I tried to add, in my pom.xml : > > > <project> > <build> > <plugins> > <plugin> > <groupId>org.codehaus.mojo</groupId> > <artifactId>jalopy-maven-plugin</artifactId> > <version>1.0-SNAPSHOT</version> > </plugin> > </plugins> > </build> > </project> This one is the correct one see http://mojo.codehaus.org/jalopy-maven-plugin/howto.html
