You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2009/05/03 01:37:50 UTC

svn commit: r771000 - in /tomcat/trunk: test.xml test/build.xml

Author: markt
Date: Sat May  2 23:17:55 2009
New Revision: 771000

URL: http://svn.apache.org/viewvc?rev=771000&view=rev
Log:
Move file for consistency. May ultimately move test.xml inside build.xml

Added:
    tomcat/trunk/test.xml
      - copied, changed from r770999, tomcat/trunk/test/build.xml
Removed:
    tomcat/trunk/test/build.xml

Copied: tomcat/trunk/test.xml (from r770999, tomcat/trunk/test/build.xml)
URL: http://svn.apache.org/viewvc/tomcat/trunk/test.xml?p2=tomcat/trunk/test.xml&p1=tomcat/trunk/test/build.xml&r1=770999&r2=771000&rev=771000&view=diff
==============================================================================
--- tomcat/trunk/test/build.xml (original)
+++ tomcat/trunk/test.xml Sat May  2 23:17:55 2009
@@ -20,12 +20,12 @@
   <!-- See "build.properties.sample" in the top level directory for all     -->
   <!-- property values you must customize for successful building!!!        -->
   <property file="${user.home}/build.properties"/>
-  <property file="../build.properties"/>
+  <property file="build.properties"/>
 
-  <property file="../build.properties.default"/>
+  <property file="build.properties.default"/>
 
-  <property name="test.classes" value="${basedir}/output/classes"/>
-  <property name="tomcat.classes" value="${basedir}/../output/classes"/>
+  <property name="test.classes" value="${basedir}/output/testclasses"/>
+  <property name="tomcat.classes" value="${basedir}/output/classes"/>
 
   <property name="compile.source" value="1.5"/>
   <property name="compile.debug" value="true"/>
@@ -41,7 +41,7 @@
   <target name="compile" depends="download" >
     <mkdir dir="${test.classes}"/>
     <!-- Compile -->
-    <javac srcdir="." destdir="${test.classes}"
+    <javac srcdir="test" destdir="${test.classes}"
            debug="${compile.debug}"
            deprecation="${compile.deprecation}"
            source="${compile.source}"



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org