donaldp 01/04/16 20:44:17
Modified: . Tag: xml-cocoon2 build.xml
Log:
Allowed users to overide properties via placement of .ant.properties in home
dir or in project dir.
Also set up default properties for jikes compiler to make it print out errors
in an editor friendly manner.
Revision Changes Path
No revision
No revision
1.6.2.74 +17 -0 xml-cocoon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-cocoon/build.xml,v
retrieving revision 1.6.2.73
retrieving revision 1.6.2.74
diff -u -r1.6.2.73 -r1.6.2.74
--- build.xml 2001/04/15 14:07:59 1.6.2.73
+++ build.xml 2001/04/17 03:44:17 1.6.2.74
@@ -91,6 +91,23 @@
<project default="package" basedir=".">
+ <!--
+ Give user a chance to override without editing this file
+ (and without typing -D each time he compiles it)
+ -->
+ <property file=".ant.properties"/>
+ <property file="${user.home}/.ant.properties"/>
+
+ <!--
+ these are here only for those who use jikes compiler. For other
+ developers this part makes no difference.
+ -->
+ <property name="build.compiler.emacs" value="on"/>
+ <property name="build.compiler.warnings" value="true"/>
+ <property name="build.compiler.pedantic" value="true"/>
+ <property name="build.compiler.depend" value="true"/>
+ <property name="build.compiler.fulldepend" value="true"/>
+
<!-- ===================================================================
-->
<!-- Indentify Classpath
-->
<!-- ===================================================================
-->
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]