Author: bodewig Date: Tue Jun 6 21:09:39 2006 New Revision: 412279 URL: http://svn.apache.org/viewvc?rev=412279&view=rev Log: read a local properties file
Modified: ant/antlibs/common/trunk/build.xml Modified: ant/antlibs/common/trunk/build.xml URL: http://svn.apache.org/viewvc/ant/antlibs/common/trunk/build.xml?rev=412279&r1=412278&r2=412279&view=diff ============================================================================== --- ant/antlibs/common/trunk/build.xml (original) +++ ant/antlibs/common/trunk/build.xml Tue Jun 6 21:09:39 2006 @@ -1,6 +1,6 @@ <?xml version="1.0"?> <!-- - Copyright 2005 The Apache Software Foundation + Copyright 2005-2006 The Apache Software Foundation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -17,6 +17,7 @@ <project name="common"> <target name="setup-properties"> + <property file="build.properties"/> <property name="build" value="build"/> <property name="build.classes" value="${build}/classes"/> <property name="build.testclasses" value="${build}/test-classes"/> @@ -99,4 +100,4 @@ <target name="clean" depends="setup-properties"> <delete dir="${build}"/> </target> -</project> \ No newline at end of file +</project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]