costin 2002/08/04 08:45:16 Modified: . build.xml Log: Reverse the order of property loading. ~/build.properties will be loaded first - and can override any other property. Next is ./build.properties, and finally build.properties.default Revision Changes Path 1.17 +1 -1 jakarta-tomcat-5/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-5/build.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- build.xml 1 Aug 2002 21:00:18 -0000 1.16 +++ build.xml 4 Aug 2002 15:45:16 -0000 1.17 @@ -5,8 +5,8 @@ <!-- See "build.properties.sample" in the top level directory for all --> <!-- property values you must customize for successful building!!! --> - <property file="build.properties"/> <property file="${user.home}/build.properties"/> + <property file="build.properties"/> <property file="build.properties.default"/> <!-- Project Properties -->
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>