If anybody else sees this problem, I managed to get this working by
adding the following to my ~/.m2/settings.xml
| <profile>
| <id>jboss.repository</id>
| <activation>
| <property>
| <name>!jboss.repository.off</name>
| </property>
| </activation>
| <repositories>
| <repository>
| <id>snapshots.jboss.org</id>
| <
url>http://snapshots.jboss.org/maven2</url>
| <snapshots>
| <enabled>true</enabled>
| </snapshots>
| </repository>
| <repository>
| <id>repository.jboss.org</id>
| <
url>http://repository.jboss.org/maven2</url>
| <snapshots>
| <enabled>false</enabled>
| </snapshots>
| </repository>
| </repositories>
| <pluginRepositories>
| <pluginRepository>
| <id>repository.jboss.org</id>
| <
url>http://repository.jboss.org/maven2</url>
| <snapshots>
| <enabled>false</enabled>
| </snapshots>
| </pluginRepository>
| <pluginRepository>
| <id>snapshots.jboss.org</id>
| <
url>http://snapshots.jboss.org/maven2</url>
| <snapshots>
| <enabled>true</enabled>
| </snapshots>
| </pluginRepository>
| </pluginRepositories>
| </profile>
|
I also had to updgrade to the latest maven (2.0.8 at time of writiing).
I've verified this works with a clean build and deleting my entire local maven
repository.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4123463#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...