Correcting test failures reported by Wendy Smoak.

Looks like an old version of plexus-component-api was being pulled in from plexus-registry.
Added a fixed (closer) version of plexus-component-api to the pom.xml



git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@506155 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joakim Erdfelt 2007-02-11 22:24:44 +00:00
parent 228692c53d
commit efd3d4bb23
1 changed files with 13 additions and 7 deletions

View File

@ -31,18 +31,12 @@
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<artifactId>plexus-component-api</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
</dependency>
<dependency>
<groupId>easymock</groupId>
<artifactId>easymock</artifactId>
<version>1.2_Java1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
@ -56,6 +50,18 @@
<artifactId>plexus-registry</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- Test Deps -->
<dependency>
<groupId>easymock</groupId>
<artifactId>easymock</artifactId>
<version>1.2_Java1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>