You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/08/01 16:54:20 UTC

svn commit: r799881 - /commons/proper/math/trunk/build.xml

Author: luc
Date: Sat Aug  1 14:54:20 2009
New Revision: 799881

URL: http://svn.apache.org/viewvc?rev=799881&view=rev
Log:
updated ant build.xml according to new maven-compliant standard directory layout

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

Modified: commons/proper/math/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/build.xml?rev=799881&r1=799880&r2=799881&view=diff
==============================================================================
--- commons/proper/math/trunk/build.xml (original)
+++ commons/proper/math/trunk/build.xml Sat Aug  1 14:54:20 2009
@@ -52,13 +52,16 @@
   <property name="component.title"         value="Commons MATH"/>
 
   <!-- The current version number of this component -->
-  <property name="component.version"       value="2.0-SNAPSHOT"/>
+  <property name="component.version"       value="2.0"/>
 
   <!-- The base directory for component sources -->
-  <property name="source.home"             value="src/java"/>
+  <property name="source.home"             value="src/main/java"/>
 
   <!-- The base directory for unit test sources -->
-  <property name="test.home"               value="src/test"/>
+  <property name="test.home"               value="src/test/java"/>
+
+  <!-- The base directory for unit test resources -->
+  <property name="test.resources"          value="src/test/resources"/>
 
   <!-- Download lib dir -->
   <property name="download.lib.dir"        value="lib"/>
@@ -167,7 +170,7 @@
       </javac>
     
       <copy todir="${build.home}/test-classes">
-          <fileset dir="${test.home}">
+          <fileset dir="${test.resources}">
               <include name="**/*.xml"/>
               <include name="**/*.txt"/>
           </fileset>