|
42 | 42 | <!-- ASTGen task, used to generate Java source representing an AST with visitors from a single .ast file --> |
43 | 43 | <taskdef name="astgen" classpath="lib/buildlib/astgen.jar" classname="edu.rice.cs.astgen.AntTask" /> |
44 | 44 |
|
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. --> |
46 | 47 | <taskdef resource="com/cenqua/ant/antlib.xml" classpath="lib/buildlib/cenquatasks.jar" /> |
47 | | - |
48 | 48 | <extendclasspath path="lib/buildlib/junit.jar" /> |
49 | 49 |
|
50 | 50 | <!-- *********** |
|
61 | 61 | <echo message="variables should be defined:" /> |
62 | 62 | <echo message="JAVA14_HOME: Home folder of the Java 1.4 JRE or J2SDK" /> |
63 | 63 | <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" /> |
64 | 65 | <echo message="CLOVER_JAR: Location of the Clover jar file (necessary only if " /> |
65 | 66 | <echo message=" Clover tasks will be used)"/> |
66 | | - <echo message="PATH: 'svn' needs to refer to the Subversion client executable" /> |
67 | 67 | <echo message="" /> |
68 | 68 | <echo message="Additionally, Ant must be run under Java 5.0 or later. If that is " /> |
69 | 69 | <echo message="not the system default, it may be set for Ant by using JAVA_HOME." /> |
|
355 | 355 | </target> |
356 | 356 |
|
357 | 357 | <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)"> |
359 | 359 | <echo message="Running the DrJava application (5.0 classes in Java 5.0)" /> |
360 | 360 | <java classname="${main-class}" fork="yes" spawn="yes"> |
361 | 361 | <classpath> |
|
366 | 366 | </target> |
367 | 367 |
|
368 | 368 | <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)"> |
370 | 370 | <echo message="Running the DrJava application (1.4 classses in Java 1.4)" /> |
371 | 371 | <java classname="${main-class}" jvm="${java14-exec}" fork="yes" spawn="yes"> |
372 | 372 | <classpath> |
|
377 | 377 | </target> |
378 | 378 |
|
379 | 379 | <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)"> |
381 | 381 | <echo message="Running the DrJava application (1.4 classses in Java 5.0)" /> |
382 | 382 | <java classname="${main-class}" fork="yes" spawn="yes"> |
383 | 383 | <classpath> |
|
544 | 544 |
|
545 | 545 | <delete includeemptydirs="true" failonerror="${clean-can-fail}"> |
546 | 546 | <fileset dir="${basedir}" defaultexcludes="no"> |
547 | | - <include name="classes" /> |
548 | 547 | <include name="src/**/*.class" /> |
549 | 548 | <!-- We could get rid of backups, but "update" ignores them, so they're okay. |
550 | 549 | (doesn't work if defaultexcludes is "yes") --> |
|
0 commit comments