I updated the repositories in the MovieFun Example pom.xml to include the Jboss repo and it builds fine for me. <repositories> <repository> <id>apache-m2-snapshot</id> <name>Apache Snapshot Repository</name> <url>http://repository.apache.org/snapshots</url> </repository> <repository> <id>jboss</id> <name>Jboss Repository</name> <url>https://repository.jboss.org/nexus/content/groups/public</url> </repository> </repositories>
- Ranga ________________________________ From: Jonathan Gallimore <[email protected]> To: [email protected] Sent: Friday, August 19, 2011 1:12 PM Subject: Re: Arquillian David just pointed out to me on IRC that you'll need some artifacts from the JBoss repository. Here's the relevant profile section from my ~/.m2/settings.xml: <profile> <id>jboss-public-repository</id> <repositories> <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>jboss-public-repository-group</id> <name>JBoss Public Maven Repository Group</name> <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </pluginRepository> </pluginRepositories> </profile> We should probably include this in the pom.xml for the adaptor. Jon On Fri, Aug 19, 2011 at 7:54 AM, Jonathan Gallimore < [email protected]> wrote: > Hi all, > > Just to let you know I committed some more Arquillian support into the > sandbox area. There's now three modes of operation: > > 1. Remote (you have to have TomEE running) > 2. Fully embedded (no need for a war file or anything like that) > 3. Slightly less embeddded - this uses Arquillian/Shrinkwrap's Maven > resolver to find a copy of openejb.war. > > I think a couple of the tests don't work in Maven, and you'll need an up to > date build of trunk for it to work. Other than that, it hopefully works ok. > > Please shout if you see any problems. > > Jon >
