You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2012/11/12 18:52:21 UTC

svn commit: r1408376 - in /tomcat/tc6.0.x/branches/tomcat6-testing: build.xml dist.xml extras.xml

Author: kkolinko
Date: Mon Nov 12 17:52:20 2012
New Revision: 1408376

URL: http://svn.apache.org/viewvc?rev=1408376&view=rev
Log:
Introduce property "tomcat.output" that is used to specify location of the build output directory.
This simplifies configuration when the output directory is located outside of the source tree.
(One would have to define a single property instead of several ones).

Modified:
    tomcat/tc6.0.x/branches/tomcat6-testing/build.xml
    tomcat/tc6.0.x/branches/tomcat6-testing/dist.xml
    tomcat/tc6.0.x/branches/tomcat6-testing/extras.xml

Modified: tomcat/tc6.0.x/branches/tomcat6-testing/build.xml
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/branches/tomcat6-testing/build.xml?rev=1408376&r1=1408375&r2=1408376&view=diff
==============================================================================
--- tomcat/tc6.0.x/branches/tomcat6-testing/build.xml (original)
+++ tomcat/tc6.0.x/branches/tomcat6-testing/build.xml Mon Nov 12 17:52:20 2012
@@ -53,10 +53,11 @@
 
   <!-- Build Defaults -->
   <property name="tomcat.home"           value="${basedir}"/>
-  <property name="tomcat.build"          value="${basedir}/output/build"/>
-  <property name="tomcat.classes"        value="${basedir}/output/classes"/>
-  <property name="tomcat.dist"           value="${basedir}/output/dist"/>
-  <property name="tomcat.manifests"      value="${basedir}/output/manifests"/>
+  <property name="tomcat.output"         value="${basedir}/output"/>
+  <property name="tomcat.build"          value="${tomcat.output}/build"/>
+  <property name="tomcat.classes"        value="${tomcat.output}/classes"/>
+  <property name="tomcat.dist"           value="${tomcat.output}/dist"/>
+  <property name="tomcat.manifests"      value="${tomcat.output}/manifests"/>
   <property name="test.failonerror"      value="true"/>
   <property name="test.runner"           value="junit.textui.TestRunner"/>
 

Modified: tomcat/tc6.0.x/branches/tomcat6-testing/dist.xml
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/branches/tomcat6-testing/dist.xml?rev=1408376&r1=1408375&r2=1408376&view=diff
==============================================================================
--- tomcat/tc6.0.x/branches/tomcat6-testing/dist.xml (original)
+++ tomcat/tc6.0.x/branches/tomcat6-testing/dist.xml Mon Nov 12 17:52:20 2012
@@ -54,12 +54,13 @@
   <property name="final-src.name"        value="${project}-${version}-src" />
 
   <!-- Build Defaults -->
-  <property name="tomcat.build"      value="${basedir}/output/build"/>
-  <property name="tomcat.classes"    value="${basedir}/output/classes"/>
-  <property name="tomcat.dist"       value="${basedir}/output/dist"/>
-  <property name="tomcat.deployer"   value="${basedir}/output/deployer"/>
-  <property name="tomcat.extras"     value="${basedir}/output/extras"/>
-  <property name="tomcat.release"    value="${basedir}/output/release"/>
+  <property name="tomcat.output"     value="${basedir}/output"/>
+  <property name="tomcat.build"      value="${tomcat.output}/build"/>
+  <property name="tomcat.classes"    value="${tomcat.output}/classes"/>
+  <property name="tomcat.dist"       value="${tomcat.output}/dist"/>
+  <property name="tomcat.deployer"   value="${tomcat.output}/deployer"/>
+  <property name="tomcat.extras"     value="${tomcat.output}/extras"/>
+  <property name="tomcat.release"    value="${tomcat.output}/release"/>
   <property name="test.failonerror"  value="true"/>
   <property name="test.runner"       value="junit.textui.TestRunner"/>
 

Modified: tomcat/tc6.0.x/branches/tomcat6-testing/extras.xml
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/branches/tomcat6-testing/extras.xml?rev=1408376&r1=1408375&r2=1408376&view=diff
==============================================================================
--- tomcat/tc6.0.x/branches/tomcat6-testing/extras.xml (original)
+++ tomcat/tc6.0.x/branches/tomcat6-testing/extras.xml Mon Nov 12 17:52:20 2012
@@ -54,13 +54,14 @@
   <property name="final-src.name"        value="${project}-${version}-src" />
 
   <!-- Build Defaults -->
-  <property name="tomcat.build"      value="${basedir}/output/build"/>
-  <property name="tomcat.classes"    value="${basedir}/output/classes"/>
-  <property name="tomcat.dist"       value="${basedir}/output/dist"/>
-  <property name="tomcat.extras"     value="${basedir}/output/extras"/>
-  <property name="tomcat.manifests"  value="${basedir}/output/manifests"/>
-  <property name="tomcat.deployer"   value="${basedir}/output/deployer"/>
-  <property name="tomcat.release"    value="${basedir}/output/release"/>
+  <property name="tomcat.output"     value="${basedir}/output"/>
+  <property name="tomcat.build"      value="${tomcat.output}/build"/>
+  <property name="tomcat.classes"    value="${tomcat.output}/classes"/>
+  <property name="tomcat.dist"       value="${tomcat.output}/dist"/>
+  <property name="tomcat.extras"     value="${tomcat.output}/extras"/>
+  <property name="tomcat.manifests"  value="${tomcat.output}/manifests"/>
+  <property name="tomcat.deployer"   value="${tomcat.output}/deployer"/>
+  <property name="tomcat.release"    value="${tomcat.output}/release"/>
   <property name="test.failonerror"  value="true"/>
   <property name="test.runner"       value="junit.textui.TestRunner"/>
 



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