Skip to content

Instantly share code, notes, and snippets.

@paulbakker
Created September 5, 2011 20:16
Show Gist options
  • Save paulbakker/1195823 to your computer and use it in GitHub Desktop.
Save paulbakker/1195823 to your computer and use it in GitHub Desktop.
[ERROR] Failed to execute goal on project t3: Could not resolve dependencies for project demo:t3:war:1.0.0-SNAPSHOT: Failed to collect dependencies for [junit:junit:jar:4.9 (test), org.jboss.arquillian.junit:arquillian-junit-container:jar:1.0.0.Final-SNAPSHOT (test), org.jboss.arquillian.container:arquillian-jbossas-managed-6:jar:1.0.0.Final-SNAPSHOT (test), org.jboss.jbossas:jboss-server-manager:jar:1.0.3.GA (test), org.jboss.jbossas:jboss-as-client:pom:6.0.0.Final (test)]: Failed to read artifact descriptor for trove:trove:jar:2.1.1: Could not transfer artifact trove:trove:pom:2.1.1 from/to jboss (http://repository.jboss.org/maven2): Access denied to: http://repository.jboss.org/maven2/trove/trove/2.1.1/trove-2.1.1.pom -> [Help 1]
<profile>
<id>jbossas-managed-6</id>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-test-classes</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-as-distribution</artifactId>
<version>6.1.0.Final</version>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>target</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-jbossas-managed-6</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-server-manager</artifactId>
<version>1.0.4.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-as-client</artifactId>
<version>6.1.0.Final</version>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment