[jboss-cvs] JBossAS SVN: r70345 - projects/ejb3/trunk/core.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 3 19:53:54 EST 2008


Author: bdecoste
Date: 2008-03-03 19:53:54 -0500 (Mon, 03 Mar 2008)
New Revision: 70345

Modified:
   projects/ejb3/trunk/core/build-test.xml
   projects/ejb3/trunk/core/pom.xml
Log:
added commons-codec.jar to client CP

Modified: projects/ejb3/trunk/core/build-test.xml
===================================================================
--- projects/ejb3/trunk/core/build-test.xml	2008-03-04 00:40:00 UTC (rev 70344)
+++ projects/ejb3/trunk/core/build-test.xml	2008-03-04 00:53:54 UTC (rev 70345)
@@ -96,6 +96,7 @@
   <property name="location.dependencies.lib.junit:junit" value="${location.dependencies.lib}/junit.jar"/>
   <property name="location.dependencies.lib.hsqldb:hsqldb" value="${location.dependencies.lib}/hsqldb.jar"/>
   <property name="location.dependencies.lib.apache-httpclient:commons-httpclient" value="${location.dependencies.lib}/commons-httpclient.jar"/>
+  <property name="location.dependencies.lib.apache-codec:commons-codec" value="${location.dependencies.lib}/commons-codec.jar"/>
   <property name="location.client.lib" value="${jboss.dist}/client"/>
   <property name="location.client.lib.jbossall" value="${location.client.lib}/jbossall-client.jar"/>
     
@@ -217,6 +218,9 @@
     
     <!-- Apache HttpClient -->
     <pathelement path="${location.dependencies.lib.apache-httpclient:commons-httpclient}" />
+	
+	<!-- Apache Codec -->
+	<pathelement path="${location.dependencies.lib.apache-codec:commons-codec}" />
 
     <!-- Root of jndi.properties -->
     <pathelement location="${resources}/test" />

Modified: projects/ejb3/trunk/core/pom.xml
===================================================================
--- projects/ejb3/trunk/core/pom.xml	2008-03-04 00:40:00 UTC (rev 70344)
+++ projects/ejb3/trunk/core/pom.xml	2008-03-04 00:53:54 UTC (rev 70345)
@@ -175,6 +175,11 @@
                   <artifactId>commons-httpclient</artifactId>
                   <version>2.0.2</version> <!-- Used only here -->
                 </artifactItem>
+                <artifactItem>
+                  <groupId>apache-codec</groupId>
+                  <artifactId>commons-codec</artifactId>
+                  <version>1.2</version> <!-- Used only here -->
+                </artifactItem>
               </artifactItems>
               <outputDirectory>${project.build.directory}/dependencies/lib</outputDirectory>
               <overWriteIfNewer>true</overWriteIfNewer>
@@ -390,7 +395,6 @@
       <groupId>trove</groupId>
       <artifactId>trove</artifactId>
     </dependency>
-
   </dependencies>
 
 </project>




More information about the jboss-cvs-commits mailing list