This content has been marked as final. 
    
Show                 2 replies
    
- 
        1. Re: Jopr pluginips Nov 26, 2008 10:07 AM (in response to lboda)Hi, 
 In order to pull down the jboss-as plugin's parent pom and its other SNAPSHOT deps, you'll need to add the JBoss Maven snapshot repository to a profile in your ~/.m2/settings.xml, e.g.:<profiles> <profile> <id>snapshots</id> <repositories> <repository> <id>jboss-snapshots</id> <name>JBoss Snapshot Repository</name> <url>http://snapshots.jboss.org/maven2/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> </profile> </profiles> 
 Then activate the profile when running mvn:mvn -Psnapshots ... 
- 
        
 
    