Skip to content

Commit 986e402

Browse files
author
dlsmith
committed
Minor improvements to the build template
git-svn-id: file:///tmp/test-svn/trunk@3960 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent 3f7e1f0 commit 986e402

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

misc/build-template.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,13 @@
100100
<echo message="JAVACC_HOME: Top-level directory of JavaCC (version 4.0 or later)" />
101101
<echo message="PATH: 'svn' needs to refer to the Subversion client executable" />
102102
<echo message="CLOVER_JAR: Location of the Clover jar file (necessary only if " />
103-
<echo message=" Clover tasks will be used)"/>
103+
<echo message=" Clover targets will be used)"/>
104104
<echo message="" />
105105
<echo message="Additionally, Ant must be run under Java 5.0 or later. If that is " />
106106
<echo message="not the system default, it may be set for Ant by using JAVA_HOME." />
107107
<echo message="Ant may also require ANT_HOME to be set. Note that the value of " />
108108
<echo message="CLASSPATH will be ignored -- classes on the system classpath will " />
109-
<echo message="not be visible during the build process. To run JUnit tests," />
110-
<echo message="a copy of junit.jar should be installed in the Ant lib directory." />
109+
<echo message="not be visible during the build process." />
111110
</target>
112111

113112

@@ -153,13 +152,13 @@
153152
<copy file="${version-source}" tofile="${version-target}" filtering="yes" />
154153

155154
<antcall target="generate-ast">
156-
<param name="generate-sourcefile" value="${jexpression-ast}" />
157-
<param name="generate-dir" value="${jexpression-ast-dir}" />
155+
<param name="generate-sourcefile" value="${template-ast}" />
156+
<param name="generate-dir" value="${template-ast-dir}" />
158157
</antcall>
159158

160159
<antcall target="generate-parser">
161-
<param name="generate-sourcefile" value="${jexpression-parser}" />
162-
<param name="generate-dir" value="${jexpression-parser-dir}" />
160+
<param name="generate-sourcefile" value="${template-parser}" />
161+
<param name="generate-dir" value="${template-parser-dir}" />
163162
</antcall>
164163

165164
<!-- Any additional files to be generated may be processed here -->
@@ -546,7 +545,7 @@
546545
</target>
547546

548547
<target name="run-15" depends="compile-15, assert-15"
549-
description=Run the main class (5.0 version) under Java 5.0 (after compiling)">
548+
description="Run the main class (5.0 version) under Java 5.0 (after compiling)">
550549
<echo message="Running the DrJava application (5.0 classes in Java 5.0)" />
551550
<java classname="${main-class}" fork="yes" spawn="yes">
552551
<classpath>
@@ -702,7 +701,7 @@
702701
</antcall>
703702
</target>
704703

705-
<target name="setup-clover">
704+
<target name="setup-clover" depends="assert-clover-jar-exists">
706705
<extendclasspath path="${clover-jar}" />
707706
<taskdef resource="clovertasks" classpath="${clover-jar}" />
708707
<mkdir dir="cloverdb" />

0 commit comments

Comments
 (0)