You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/22 18:46:26 UTC

svn commit: r817723 - in /commons/sandbox/runtime/trunk: build.xml src/ant/ src/task/

Author: mturk
Date: Tue Sep 22 16:46:25 2009
New Revision: 817723

URL: http://svn.apache.org/viewvc?rev=817723&view=rev
Log:
Rename task directory to ant

Added:
    commons/sandbox/runtime/trunk/src/ant/
      - copied from r817722, commons/sandbox/runtime/trunk/src/task/
Removed:
    commons/sandbox/runtime/trunk/src/task/
Modified:
    commons/sandbox/runtime/trunk/build.xml

Modified: commons/sandbox/runtime/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/build.xml?rev=817723&r1=817722&r2=817723&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/build.xml (original)
+++ commons/sandbox/runtime/trunk/build.xml Tue Sep 22 16:46:25 2009
@@ -72,7 +72,7 @@
     <!-- Ant tasks classpath -->
     <path id="task.classpath">
         <pathelement location="${build.dest}/java"/>
-        <pathelement location="${build.dest}/task"/>
+        <pathelement location="${build.dest}/ant"/>
     </path>
 
     <!-- Examples classpath -->
@@ -201,17 +201,17 @@
     <!-- Compiles the task directory                                         -->
     <!-- =================================================================== -->
     <target name="tasks" depends="compile">
-        <mkdir dir="${build.dest}/task"/>
-        <mkdir dir="${build.src}/task"/>
-        <copy todir="${build.src}/task" filtering="yes">
-            <fileset dir="${src.dir}/task">
+        <mkdir dir="${build.dest}/ant"/>
+        <mkdir dir="${build.src}/ant"/>
+        <copy todir="${build.src}/ant" filtering="yes">
+            <fileset dir="${src.dir}/ant">
                 <include name="**/*.java"/>
                 <include name="**/*.xml"/>
                 <include name="**/*.properties"/>
             </fileset>
         </copy>
-        <javac srcdir="${build.src}/task"
-            destdir="${build.dest}/task"
+        <javac srcdir="${build.src}/ant"
+            destdir="${build.dest}/ant"
             debug="${compile.debug}"
             source="${compile.source}"
             target="${compile.target}"