Skip to content

Commit a950103

Browse files
author
dlsmith
committed
Minor cleanup on the build script
git-svn-id: file:///tmp/test-svn/trunk@3945 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent 468ac4c commit a950103

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

javalanglevels/build.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
<!-- ASTGen task, used to generate Java source representing an AST with visitors from a single .ast file -->
4343
<taskdef name="astgen" classpath="lib/buildlib/astgen.jar" classname="edu.rice.cs.astgen.AntTask" />
4444

45-
<!-- Extension that defines the "extendclasspath" task -->
45+
<!-- Extension that defines the "extendclasspath" task. This should be a standard feature of Ant, but
46+
as long as it's not, we can use this extension from the Clover developers. -->
4647
<taskdef resource="com/cenqua/ant/antlib.xml" classpath="lib/buildlib/cenquatasks.jar" />
47-
4848
<extendclasspath path="lib/buildlib/junit.jar" />
4949

5050
<!-- ***********
@@ -61,9 +61,9 @@
6161
<echo message="variables should be defined:" />
6262
<echo message="JAVA14_HOME: Home folder of the Java 1.4 JRE or J2SDK" />
6363
<echo message="JAVACC_HOME: Top-level directory of JavaCC (version 4.0 or later)" />
64+
<echo message="PATH: 'svn' needs to refer to the Subversion client executable" />
6465
<echo message="CLOVER_JAR: Location of the Clover jar file (necessary only if " />
6566
<echo message=" Clover tasks will be used)"/>
66-
<echo message="PATH: 'svn' needs to refer to the Subversion client executable" />
6767
<echo message="" />
6868
<echo message="Additionally, Ant must be run under Java 5.0 or later. If that is " />
6969
<echo message="not the system default, it may be set for Ant by using JAVA_HOME." />
@@ -355,7 +355,7 @@
355355
</target>
356356

357357
<target name="run-15" depends="compile-15, assert-15"
358-
description="Run the DrJava 5.0 classes under Java 5.0 (after compiling)">
358+
description="Run the main class (5.0 version) under Java 5.0 (after compiling)">
359359
<echo message="Running the DrJava application (5.0 classes in Java 5.0)" />
360360
<java classname="${main-class}" fork="yes" spawn="yes">
361361
<classpath>
@@ -366,7 +366,7 @@
366366
</target>
367367

368368
<target name="run-14" depends="compile-14, resolve-java14-exec"
369-
description="Run the DrJava 1.4 classes under Java 1.4 (after compiling)">
369+
description="Run the main class (1.4 version) under Java 1.4 (after compiling)">
370370
<echo message="Running the DrJava application (1.4 classses in Java 1.4)" />
371371
<java classname="${main-class}" jvm="${java14-exec}" fork="yes" spawn="yes">
372372
<classpath>
@@ -377,7 +377,7 @@
377377
</target>
378378

379379
<target name="run-14-in-15" depends="compile-14, assert-15"
380-
description="Run the DrJava 1.4 classes under Java 5.0 (after compiling)">
380+
description="Run the main class (1.4 version) under Java 5.0 (after compiling)">
381381
<echo message="Running the DrJava application (1.4 classses in Java 5.0)" />
382382
<java classname="${main-class}" fork="yes" spawn="yes">
383383
<classpath>
@@ -544,7 +544,6 @@
544544

545545
<delete includeemptydirs="true" failonerror="${clean-can-fail}">
546546
<fileset dir="${basedir}" defaultexcludes="no">
547-
<include name="classes" />
548547
<include name="src/**/*.class" />
549548
<!-- We could get rid of backups, but "update" ignores them, so they're okay.
550549
(doesn't work if defaultexcludes is "yes") -->

javalanglevels/lib/readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ retroweaver-rt-1.2.3.jar: Retroweaver 1.2.3 (the runtime classes package)
3131

3232
buildlib/astgen.jar: astgen-20060227-1521
3333

34-
buildlib/retroweaver-all-1.2.3.jar: Retroweaver 1.2.3
34+
buildlib/cenquatasks.jar: Distributed with Clover 1.3.9
3535

3636
buildlib/junit.jar: JUnit 3.8.1
3737

38+
buildlib/retroweaver-all-1.2.3.jar: Retroweaver 1.2.3
39+
40+

0 commit comments

Comments
 (0)