You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by jr...@apache.org on 2006/09/21 03:10:25 UTC

svn commit: r448420 - in /incubator/abdera/java/trunk: pom.xml protocol/pom.xml

Author: jrduncans
Date: Wed Sep 20 18:10:24 2006
New Revision: 448420

URL: http://svn.apache.org/viewvc?view=rev&rev=448420
Log:
Added commons-codec to Maven build to allow protocol module to compile.

Submitted by: Hugo Duncan <hu...@yahoo.com>

* pom.xml: Added commons-codec to dependencyManagement.
* protocol/pom.xml: Added commons-coded as a dependency.

Modified:
    incubator/abdera/java/trunk/pom.xml
    incubator/abdera/java/trunk/protocol/pom.xml

Modified: incubator/abdera/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/pom.xml?view=diff&rev=448420&r1=448419&r2=448420
==============================================================================
--- incubator/abdera/java/trunk/pom.xml (original)
+++ incubator/abdera/java/trunk/pom.xml Wed Sep 20 18:10:24 2006
@@ -78,6 +78,13 @@
         <version>3.0</version>
         <scope>compile</scope>
       </dependency>
+         
+      <dependency>
+        <groupId>commons-codec</groupId>
+        <artifactId>commons-codec</artifactId>
+        <version>1.3</version>
+        <scope>compile</scope>
+      </dependency>
       
       <dependency>
         <groupId>ws-commons</groupId>

Modified: incubator/abdera/java/trunk/protocol/pom.xml
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/protocol/pom.xml?view=diff&rev=448420&r1=448419&r2=448420
==============================================================================
--- incubator/abdera/java/trunk/protocol/pom.xml (original)
+++ incubator/abdera/java/trunk/protocol/pom.xml Wed Sep 20 18:10:24 2006
@@ -37,6 +37,10 @@
       <artifactId>junit</artifactId>
     </dependency>
     <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-activation_1.0.2_spec</artifactId>
     </dependency>