You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2010/10/17 16:35:11 UTC

svn commit: r1023507 - /commons/proper/pool/trunk/build.xml

Author: simonetripodi
Date: Sun Oct 17 14:35:11 2010
New Revision: 1023507

URL: http://svn.apache.org/viewvc?rev=1023507&view=rev
Log:
fixed artifact name and package in ant build

Modified:
    commons/proper/pool/trunk/build.xml

Modified: commons/proper/pool/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/build.xml?rev=1023507&r1=1023506&r2=1023507&view=diff
==============================================================================
--- commons/proper/pool/trunk/build.xml (original)
+++ commons/proper/pool/trunk/build.xml Sun Oct 17 14:35:11 2010
@@ -46,10 +46,10 @@
       <!-- now combine the classpaths -->
       <property name="classpath" value="${cp}"/>
 
-      <property name="name" value="commons-pool"/>
+      <property name="name" value="commons-pool2"/>
       <property name="title" value="Apache Commons Object Pooling Package"/>
       <property name="version" value="2.0-SNAPSHOT"/>
-      <property name="package" value="org.apache.commons.pool.*"/>
+      <property name="package" value="org.apache.commons.pool2.*"/>
 
       <property name="src.dir" value="${basedir}/src"/>
       <property name="src.java.dir" value="${src.dir}/java"/>
@@ -151,7 +151,7 @@
         <batchtest todir="${build.dir}/ant-reports" unless="test.entry">
           <fileset dir="${src.test.dir}">
             <include name="**/Test*.java"/>
-            <exclude name="org/apache/commons/pool/impl/TestSoftRefOutOfMemory.java"/>
+            <exclude name="org/apache/commons/pool2/impl/TestSoftRefOutOfMemory.java"/>
             <!-- abstract classes -->
             <exclude name="**/TestObjectPool.java"/>
             <exclude name="**/TestObjectPoolFactory.java"/>