Fix one last stupid mistake in build.xml, my fault.

This commit is contained in:
sponge
2010-01-02 22:58:50 +00:00
parent f1a9613a92
commit 5fcddd581e
3 changed files with 5 additions and 2 deletions

View File

@ -71,7 +71,7 @@
nbproject/build-impl.xml file. nbproject/build-impl.xml file.
--> -->
<target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-do-jar-with-libraries-without-mainclass,-do-jar-with-libraries-without-manifest,-post-jar" description="Build BOB into a SINGLE JAR." name="onejar"> <target depends="jar" description="Build BOB into a SINGLE JAR." name="onejar">
<!-- Make needed working dirs --> <!-- Make needed working dirs -->
<mkdir dir="${dist.dir}/lib" /> <mkdir dir="${dist.dir}/lib" />
<mkdir dir="${dist.dir}/classes" /> <mkdir dir="${dist.dir}/classes" />

View File

@ -1,3 +1,6 @@
2010-01-02 sponge
* Fix one last stupid mistake in build.xml, my fault.
2010-01-02 sponge 2010-01-02 sponge
* Fix NB 6.8 goofyness... 'till ant 1.7.1 or > is needed, stay with NB * Fix NB 6.8 goofyness... 'till ant 1.7.1 or > is needed, stay with NB
6.5, as the newer ones place a check for 1.7.1. We require 1.7.0 6.5, as the newer ones place a check for 1.7.1. We require 1.7.0

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 15; public final static long BUILD = 16;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;