This content has been marked as final.
Show 3 replies
-
1. Re: Workaround for corrupted MavenDependencyResolver
kpiwko Jul 7, 2011 9:18 AM (in response to juergen.zimmermann)Hi Juergen,
I've just started digging the reason. Stay tuned.
Karel
-
2. Re: Workaround for corrupted MavenDependencyResolver
badr Oct 16, 2011 6:20 PM (in response to kpiwko)is there any update about that!
-
3. Re: Workaround for corrupted MavenDependencyResolver
kpiwko Oct 17, 2011 3:17 AM (in response to badr)You have define dependency on MavenDependencyResolver into your pom.xml.Following is the best way how to do that:
<properties> <version.arquillian_core>1.0.0.CR5</version.arquillian_core> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.jboss.arquillian</groupId> <artifactId>arquillian-bom</artifactId> <version>${version.arquillian_core}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <!-- Resolution of JAR libraries into WAR archive --> <dependency> <groupId>org.jboss.shrinkwrap.resolver</groupId> <artifactId>shrinkwrap-resolver-impl-maven</artifactId> <scope>test</scope> </dependency>