I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 916dcca2 authored by jrandom's avatar jrandom Committed by zzz
Browse files

* build with reference to the i2p.jar/mstreaming.jar/i2ptunnel.jar inline (building as necessary)

* removed unnecessary references to i2ptunnel (though i2ptunnelxmlobject still references i2ptunnelxmlwrapper)
parent 31e81bab
No related branches found
No related tags found
No related merge requests found
......@@ -19,10 +19,19 @@
<property location="${project.name}.jar" name="jar"/>
</target>
<target depends="init" name="compile">
<target name="builddep">
<ant dir="../../i2ptunnel/java/" target="build" />
<!-- i2ptunnel builds ministreaming and core -->
</target>
<target depends="init,builddep" name="compile">
<!-- Both srcdir and destdir should be package roots. -->
<mkdir dir="${classes.dir}"/>
<javac debug="true" deprecation="true" destdir="${classes.dir}" srcdir="${src.dir}">
<javac debug="true"
deprecation="true"
destdir="${classes.dir}"
srcdir="${src.dir}"
classpath="xmlrpc.jar:../../../core/java/build/i2p.jar:../../ministreaming/java/build/mstreaming.jar:../../i2ptunnel/java/build/i2ptunnel.jar" >
<!-- To add something to the classpath: -->
<!-- <classpath><pathelement location="${mylib}"/></classpath> -->
<!-- To exclude some files: -->
......
......@@ -11,7 +11,6 @@ import net.i2p.client.*;
import net.i2p.client.streaming.*;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
* Class which wraps an I2PSocket object with convenient methods.
......
......@@ -10,8 +10,7 @@ import net.i2p.client.*;
import net.i2p.client.streaming.*;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
import net.i2p.i2ptunnel.I2PTunnelXMLWrapper;
/**
* Defines the I2P tunnel management methods which will be
......
......@@ -10,7 +10,6 @@ import net.i2p.client.*;
import net.i2p.client.streaming.*;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
* Provides a means for programs in any language to dynamically manage
......
......@@ -14,7 +14,6 @@ import net.i2p.client.streaming.*;
import net.i2p.data.Base64;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
......
......@@ -14,7 +14,6 @@ import net.i2p.client.streaming.*;
import net.i2p.data.Base64;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
......
......@@ -14,7 +14,6 @@ import net.i2p.client.streaming.*;
import net.i2p.data.Base64;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
* A simple class providing callable xmlrpc server methods, gets linked in to
......
......@@ -13,7 +13,6 @@ import net.i2p.client.streaming.*;
import net.i2p.data.Base64;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
......
......@@ -13,7 +13,6 @@ import net.i2p.client.streaming.*;
import net.i2p.data.Base64;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
......
......@@ -14,8 +14,6 @@ import net.i2p.client.streaming.*;
import net.i2p.data.Base64;
import net.i2p.util.*;
import net.i2p.data.*;
import net.i2p.i2ptunnel.*;
/**
* A convenience class for encapsulating and manipulating I2P private keys
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment