Skip to content

Commit e1dcefe

Browse files
author
rcartwright
committed
Fixed a bug in build-common.xml that generated the jar file after cleaning but before compiling!
git-svn-id: file:///tmp/test-svn/trunk@3430 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent 8e61476 commit e1dcefe

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

dynamicjava/src/koala/Version.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
* This file is copied to Version.java by the build process, which also
5454
* fills in the right values of the date and time.
5555
*
56-
* This javadoc corresponds to build drjava-20050822-0532;
56+
* This javadoc corresponds to build drjava-20050822-0541;
5757
*
5858
* @version $Id$
5959
*/
@@ -62,7 +62,7 @@ public abstract class Version {
6262
* This string will be automatically expanded upon "ant commit".
6363
* Do not edit it by hand!
6464
*/
65-
private static final String BUILD_TIME_STRING = "20050822-0532";
65+
private static final String BUILD_TIME_STRING = "20050822-0541";
6666

6767
/** A {@link Date} version of the build time. */
6868
private static final Date BUILD_TIME = _getBuildDate();

dynamicjava/src/koala/build-common.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
After committing, we tag the build we just made with the tag
9999
projectname-date-time.
100100
-->
101-
<target name="do-commit" depends="clean, update, jar, test, make-version-stamp, get-timestamp">
101+
<target name="do-commit" depends="clean, update, compile, jar, test-only, make-version-stamp">
102102
<property name="version-tag"
103103
value="${ant.project.name}-${DSTAMP}-${TSTAMP}" />
104104

0 commit comments

Comments
 (0)