Build: Add javac.classpath to junit.compileTest targets (ticket #2333)

This commit is contained in:
zzz
2018-10-13 09:32:51 +00:00
parent 10707c6d71
commit 0a99784221
5 changed files with 29 additions and 2 deletions

View File

@ -195,6 +195,7 @@
includeAntRuntime="false" includeAntRuntime="false"
destdir="./build/obj" > destdir="./build/obj" >
<classpath> <classpath>
<pathelement location="${javac.classpath}" />
<pathelement location="../../../core/java/build/i2p.jar" /> <pathelement location="../../../core/java/build/i2p.jar" />
<pathelement location="${junit.home}/junit4.jar" /> <pathelement location="${junit.home}/junit4.jar" />
<pathelement location="${hamcrest.home}/hamcrest.jar" /> <pathelement location="${hamcrest.home}/hamcrest.jar" />

View File

@ -62,6 +62,7 @@
includeAntRuntime="false" includeAntRuntime="false"
destdir="./build/obj" > destdir="./build/obj" >
<classpath> <classpath>
<pathelement location="${javac.classpath}" />
<pathelement location="../../../core/java/build/i2p.jar" /> <pathelement location="../../../core/java/build/i2p.jar" />
<pathelement location="../../ministreaming/java/build/mstreaming.jar" /> <pathelement location="../../ministreaming/java/build/mstreaming.jar" />
<pathelement location="${junit.home}/junit4.jar" /> <pathelement location="${junit.home}/junit4.jar" />

View File

@ -1,5 +1,29 @@
2018-10-13 zzz
* Build: Add javac.classpath to junit.compileTest targets (ticket #2333)
2018-10-11 zzz
* Console: Remove static Server reference
2018-10-10 zzz
* Build: Provide option to prevent Class-Path in manifests (ticket #2317)
2018-10-09 zzz
* Console: Sybil tool refactoring
2018-10-08 zzz
* Console: Refactor StatSummarizer
2018-10-07 zzz
* Build: Fix config with-libtomcat8-java but not
with-libjetty9-java (ticket #1934)
* Debian: Don't override dh_builddeb (ticket #2329)
2018-10-06 zzz 2018-10-06 zzz
* Console: Sort addresses in RIs * Console:
- Fix P/X caps on /tunnels
- Netdb search fixes (ticket #2326)
- Sort addresses in RIs
- Split /peers page into tabs (ticket #1934)
* 2018-10-04 0.9.37 released * 2018-10-04 0.9.37 released

View File

@ -163,6 +163,7 @@
includeAntRuntime="true" includeAntRuntime="true"
destdir="./build/obj"> destdir="./build/obj">
<classpath> <classpath>
<pathelement location="${javac.classpath}" />
<pathelement location="${hamcrest.home}/hamcrest-core.jar" /> <pathelement location="${hamcrest.home}/hamcrest-core.jar" />
<pathelement location="${hamcrest.home}/hamcrest-library.jar" /> <pathelement location="${hamcrest.home}/hamcrest-library.jar" />
<pathelement location="${hamcrest.home}/hamcrest-integration.jar" /> <pathelement location="${hamcrest.home}/hamcrest-integration.jar" />

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 = 1; public final static long BUILD = 2;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";