You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ep...@apache.org on 2006/02/23 07:37:54 UTC

svn commit: r380049 - /maven/repository-manager/trunk/maven-repository-proxy/pom.xml

Author: epunzalan
Date: Wed Feb 22 22:37:50 2006
New Revision: 380049

URL: http://svn.apache.org/viewcvs?rev=380049&view=rev
Log:
Fixed error when building bec of a lack in dependency.

Wonder why we didn't catch this error earlier

Modified:
    maven/repository-manager/trunk/maven-repository-proxy/pom.xml

Modified: maven/repository-manager/trunk/maven-repository-proxy/pom.xml
URL: http://svn.apache.org/viewcvs/maven/repository-manager/trunk/maven-repository-proxy/pom.xml?rev=380049&r1=380048&r2=380049&view=diff
==============================================================================
--- maven/repository-manager/trunk/maven-repository-proxy/pom.xml (original)
+++ maven/repository-manager/trunk/maven-repository-proxy/pom.xml Wed Feb 22 22:37:50 2006
@@ -42,5 +42,9 @@
       <artifactId>wagon-file</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-provider-api</artifactId>
+    </dependency>
   </dependencies>
 </project>