> 12/8/08 12:27:55 PM EST: Missing artifact > org.jboss.maven.plugins:maven-jbossaop-plugin:jar:1.0.0:compile
This means Maven cannot find the plugin maven-jbossaop-plugin with the version 1.0.0. > <pluginRepository> > <releases> > <updatePolicy>never</updatePolicy> > </releases> > <snapshots> > <enabled>true</enabled> > </snapshots> This says, look at this repo for SNAPSHOT-versioned plugins, only. Maven will never look here for a plugin with the version 1.0.0. > <repository> > <id>snapshots.jboss.org</id> > <name>JBoss Maven Snapshot Repository</name> > <url>http://snapshots.jboss.org/maven2</url> > </repository> This says, when you're trying to find artifacts for the dependencies etc, look at this repo. But you've configured a regular (non-SNAPSHOT) repo, and you're pointing at a snapshot repo (so the name indicates), so this is probably an error. > <dependency> > <groupId>org.jboss.maven.plugins</groupId> > <artifactId>maven-jbossaop-plugin</artifactId> > <version>1.0.0</version> > </dependency> Plugins are almost never dependencies. This pom is completely wrong in so many ways. Ask the JBoss AOP plugin people for help. It seems like their documentation needs to be updated or improved. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
