forked from I2P_Developers/i2p.i2p
Build: Add javac.classpath to junit.compileTest targets (ticket #2333)
This commit is contained in:
@ -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" />
|
||||||
|
@ -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" />
|
||||||
|
26
history.txt
26
history.txt
@ -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
|
||||||
|
|
||||||
|
@ -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" />
|
||||||
|
@ -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 = "";
|
||||||
|
Reference in New Issue
Block a user