2005-08-30 02:04:17 +00:00
<?xml version="1.0" encoding="ISO-8859-1"?>
2004-04-08 04:41:54 +00:00
<project basedir= "." default= "all" name= "i2p" >
2005-08-21 18:39:05 +00:00
2009-04-26 15:54:51 +00:00
<!-- Things you might want to change -->
<!-- This keeps gcj a lot quieter -->
<!--
<property name= "javac.compilerargs" value= "-warn:-unchecked,raw,unused,serial" />
-->
<!-- You probably don't want to change anything from here down -->
2004-04-08 04:41:54 +00:00
<target name= "all" >
<echo message= "Useful targets: " />
2008-03-22 13:07:38 +00:00
<echo message= " pkg: distclean then package everything up (installer, clean tarball, update tarball)" />
<echo message= " dist: pkg and javadoc" />
2004-09-02 21:26:03 +00:00
<echo message= " installer: build the GUI installer" />
<echo message= " tarball: tar the full install into i2p.tar.bz2 (extracts to build a new clean install)" />
2004-09-30 06:57:22 +00:00
<echo message= " updater: tar the built i2p specific files into an i2pupdate.zip (extracts safely over existing installs)" />
2007-03-03 20:30:52 +00:00
<echo message= " updaterWithJetty: tar the built i2p specific files and jetty into an i2pupdate.zip (extracts safely over existing installs)" />
2009-04-26 16:27:44 +00:00
<echo message= " updaterWithJettyFixes: updater including local jetty patches" />
2009-05-19 18:07:19 +00:00
<echo message= " updaterWithGeoIP: updater including GeoIP Files" />
2009-06-07 14:13:01 +00:00
<echo message= " updaterWithJettyFixesAndGeoIP" />
2008-05-26 13:13:26 +00:00
<echo message= " updaterSmall: updater with the essentials only - no SAM, i2psnark, SusiMail, SusiDNS, news.xml, or history.txt" />
2008-05-26 14:39:39 +00:00
<echo message= " updaterRouter: updater with the i2p.jar and router.jar only" />
2004-04-08 04:41:54 +00:00
<echo message= " distclean: clean up all derived files" />
2005-12-03 05:41:25 +00:00
<echo message= " syndie: generate a standalone syndie install" />
2005-12-18 05:39:52 +00:00
<echo message= " i2psnark: generate a standalone i2psnark install" />
2004-09-02 21:26:03 +00:00
<echo message= " javadoc: generate javadoc for the entire project into ./build/javadoc" />
2009-02-02 01:22:31 +00:00
<echo message= " slackpkg: generate Slackware packages in ./Slackware/i2p and ./Slackware/i2p-base" />
2009-02-06 18:39:51 +00:00
<echo message= " debianhowto: instructions on building Debian packages" />
2009-05-06 16:17:58 +00:00
<echo message= " updaterWithDesktopgui: tar the built files and desktopgui in an i2pupdate.zip" />
<echo message= " pkgWithDesktopgui: distclean then package everything up with the desktopgui" />
<echo message= " distWithDesktopgui: pkgWithDesktopgui and javadoc" />
<echo message= " distcleanWithDesktopgui: clean up all derived files (including desktopgui files)" />
2009-02-06 18:39:51 +00:00
</target>
<target name= "debianhowto" >
<echo message= "To build debian packages, you must run dpkg-buildpackage as root in the source directory. It will then run ant for you. dpkg-buildpackage is found in the 'dpkg-dev' package. Also it should work fine to use the 'fakeroot' package with dpkg-buildpackage, if you don't want to run as root. Please read 'man dpkg-buildpackage' before building any packages yourself." />
2004-04-08 04:41:54 +00:00
</target>
2004-11-04 08:31:11 +00:00
<target name= "dist" depends= "pkg, javadoc" >
2004-08-20 19:58:04 +00:00
</target>
2008-11-09 15:46:08 +00:00
<target name= "build" depends= "build2" >
<!-- so we don't build standalone for the updater -->
2009-06-15 15:22:51 +00:00
<!-- This builds apps/i2psnark/java/i2psnark - standalone.zip,
- which we don't distribute anywhere...
2008-11-09 15:46:08 +00:00
<ant dir= "apps/i2psnark/java/" target= "standalone" />
2009-06-15 15:22:51 +00:00
-->
2008-11-09 15:46:08 +00:00
</target>
<target name= "build2" depends= "builddep, jar, buildWEB" />
2008-05-26 13:13:26 +00:00
<target name= "buildSmall" depends= "builddepSmall, jarSmall, buildWEB" />
2004-08-01 05:31:15 +00:00
<target name= "buildclean" depends= "distclean, build" />
2008-05-26 13:13:26 +00:00
<target name= "builddep" depends= "builddepSmall" >
2004-04-08 18:24:07 +00:00
<!-- build *everything* here, but only once -->
2008-10-07 18:30:07 +00:00
<ant dir= "apps/BOB/" target= "jar" />
2008-05-26 13:13:26 +00:00
<ant dir= "apps/sam/java/" target= "jar" />
<ant dir= "apps/susimail/" target= "war" />
<ant dir= "apps/susidns/src" target= "all" />
2008-11-09 15:46:08 +00:00
<ant dir= "apps/i2psnark/java/" target= "war" />
2008-05-26 13:13:26 +00:00
</target>
<target name= "builddepSmall" >
2004-04-08 18:24:07 +00:00
<ant dir= "core/java/" target= "jar" />
<ant dir= "router/java/" target= "jar" />
<ant dir= "apps/ministreaming/java/" target= "jar" />
2004-10-28 02:11:52 +00:00
<ant dir= "apps/streaming/java/" target= "jar" />
2004-04-08 18:24:07 +00:00
<ant dir= "apps/i2ptunnel/java/" target= "jar" />
2004-08-24 06:58:05 +00:00
<ant dir= "apps/systray/java/" target= "jar" />
2004-08-01 05:31:15 +00:00
<ant dir= "apps/routerconsole/java/" target= "jar" />
2004-12-29 22:16:42 +00:00
<ant dir= "apps/addressbook/" target= "war" />
2004-04-08 04:41:54 +00:00
</target>
2005-10-18 00:39:46 +00:00
<target name= "buildrouter" >
<ant dir= "core/java/" target= "jar" />
<ant dir= "router/java/" target= "jar" />
<copy file= "core/java/build/i2p.jar" todir= "build/" />
<copy file= "router/java/build/router.jar" todir= "build/" />
</target>
2004-08-31 22:26:19 +00:00
<target name= "buildWEB" >
2008-03-08 20:37:45 +00:00
<ant dir= "apps/jetty" target= "ensureJettylib" />
2004-08-31 22:26:19 +00:00
<ant dir= "apps/routerconsole/java" target= "build" />
<copy file= "apps/routerconsole/java/build/routerconsole.jar" todir= "build/" />
<copy file= "apps/routerconsole/java/build/routerconsole.war" todir= "build/" />
<copy file= "apps/jetty/jettylib/org.mortbay.jetty.jar" todir= "build/" />
<copy file= "apps/jetty/jettylib/jasper-compiler.jar" todir= "build/" />
<copy file= "apps/jetty/jettylib/jasper-runtime.jar" todir= "build/" />
2005-02-16 jrandom
* (Merged the 0.5-pre branch back into CVS HEAD)
* Replaced the old tunnel routing crypto with the one specified in
router/doc/tunnel-alt.html, including updates to the web console to view
and tweak it.
* Provide the means for routers to reject tunnel requests with a wider
range of responses:
probabalistic rejection, due to approaching overload
transient rejection, due to temporary overload
bandwidth rejection, due to persistent bandwidth overload
critical rejection, due to general router fault (or imminent shutdown)
The different responses are factored into the profiles accordingly.
* Replaced the old I2CP tunnel related options (tunnels.depthInbound, etc)
with a series of new properties, relevent to the new tunnel routing code:
inbound.nickname (used on the console)
inbound.quantity (# of tunnels to use in any leaseSets)
inbound.backupQuantity (# of tunnels to keep in the ready)
inbound.length (# of remote peers in the tunnel)
inbound.lengthVariance (if > 0, permute the length by adding a random #
up to the variance. if < 0, permute the length
by adding or subtracting a random # up to the
variance)
outbound.* (same as the inbound, except for the, uh, outbound tunnels
in that client's pool)
There are other options, and more will be added later, but the above are
the most relevent ones.
* Replaced Jetty 4.2.21 with Jetty 5.1.2
* Compress all profile data on disk.
* Adjust the reseeding functionality to work even when the JVM's http proxy
is set.
* Enable a poor-man's interactive-flow in the streaming lib by choking the
max window size.
* Reduced the default streaming lib max message size to 16KB (though still
configurable by the user), also doubling the default maximum window
size.
* Replaced the RouterIdentity in a Lease with its SHA256 hash.
* Reduced the overall I2NP message checksum from a full 32 byte SHA256 to
the first byte of the SHA256.
* Added a new "netId" flag to let routers drop references to other routers
who we won't be able to talk to.
* Extended the timestamper to get a second (or third) opinion whenever it
wants to actually adjust the clock offset.
* Replaced that kludge of a timestamp I2NP message with a full blown
DateMessage.
* Substantial memory optimizations within the router and the SDK to reduce
GC churn. Client apps and the streaming libs have not been tuned,
however.
* More bugfixes thank you can shake a stick at.
2005-02-13 jrandom
* Updated jbigi source to handle 64bit CPUs. The bundled jbigi.jar still
only contains 32bit versions, so build your own, placing libjbigi.so in
your install dir if necessary. (thanks mule!)
* Added support for libjbigi-$os-athlon64 to NativeBigInteger and CPUID
(thanks spaetz!)
2005-02-16 22:23:47 +00:00
<copy file= "apps/jetty/jettylib/commons-logging.jar" todir= "build/" />
<copy file= "apps/jetty/jettylib/commons-el.jar" todir= "build/" />
2004-08-31 22:26:19 +00:00
<copy file= "apps/jetty/jettylib/javax.servlet.jar" todir= "build/" />
</target>
2005-09-16 04:12:24 +00:00
<target name= "buildexe" >
2005-09-20 03:17:06 +00:00
<condition property= "noExe" >
<os arch= "x86_64" />
</condition>
2005-10-14 15:05:26 +00:00
<condition property= "noExe" >
<os arch= "ppc" />
</condition>
2005-09-20 03:17:06 +00:00
<condition property= "noExe" >
<os arch= "amd64" />
</condition>
2005-10-30 01:07:09 +00:00
<condition property= "noExe" >
<not >
<or >
<os name= "Linux" />
<os family= "windows" />
</or>
</not>
</condition>
2005-09-17 07:31:48 +00:00
<ant target= "doBuildEXE" />
</target>
2005-09-20 03:17:06 +00:00
<target name= "doBuildEXE" unless= "noExe" >
2005-09-16 04:12:24 +00:00
<jar destfile= "./build/launchi2p.jar" >
<manifest >
<attribute name= "Main-Class" value= "net.i2p.router.RouterLaunch" />
2009-05-16 04:06:01 +00:00
<attribute name= "Class-Path" value= "lib/i2p.jar lib/router.jar lib/jbigi.jar lib/BOB.jar lib/sam.jar lib/mstreaming.jar lib/streaming.jar lib/routerconsole.jar lib/i2ptunnel.jar lib/org.mortbay.jetty.jar lib/javax.servlet.jar lib/jasper-compiler.jar lib/jasper-runtime.jar lib/commons-logging.jar lib/commons-el.jar lib/wrapper.jar lib/systray.jar lib/systray4j.jar" />
2005-09-16 04:12:24 +00:00
</manifest>
</jar>
<!-- now the standalone launcher exe -->
<taskdef name= "launch4j"
classname="net.sf.launch4j.ant.Launch4jTask"
classpath="${basedir}/installer/lib/launch4j/launch4j.jar:${basedir}/installer/lib/launch4j/lib/xstream.jar" />
<launch4j configFile= "./installer/i2pstandalone.xml" />
<!-- thazzit -->
</target>
2004-04-08 04:41:54 +00:00
<target name= "compile" />
2008-05-26 13:13:26 +00:00
<target name= "jar" depends= "jarSmall" >
2008-10-07 18:30:07 +00:00
<copy file= "apps/BOB/dist/BOB.jar" todir= "build/" />
2008-05-26 13:13:26 +00:00
<copy file= "apps/sam/java/build/sam.jar" todir= "build/" />
<copy file= "apps/susimail/susimail.war" todir= "build/" />
<copy file= "apps/susidns/src/susidns.war" todir= "build/" />
<copy file= "apps/i2psnark/i2psnark.war" todir= "build/" />
<copy file= "apps/i2psnark/java/build/i2psnark.jar" todir= "build/" />
</target>
<target name= "jarSmall" depends= "compile" >
2004-04-08 04:41:54 +00:00
<copy file= "core/java/build/i2p.jar" todir= "build/" />
<copy file= "router/java/build/router.jar" todir= "build/" />
<copy file= "apps/ministreaming/java/build/mstreaming.jar" todir= "build/" />
2004-10-28 02:11:52 +00:00
<copy file= "apps/streaming/java/build/streaming.jar" todir= "build/" />
2004-04-08 04:41:54 +00:00
<copy file= "apps/i2ptunnel/java/build/i2ptunnel.jar" todir= "build/" />
2004-08-03 08:21:29 +00:00
<copy file= "apps/i2ptunnel/java/build/i2ptunnel.war" todir= "build/" />
2004-08-24 06:58:05 +00:00
<copy file= "apps/systray/java/build/systray.jar" todir= "build/" />
2004-08-21 18:03:45 +00:00
<copy file= "installer/lib/jbigi/jbigi.jar" todir= "build" />
2004-12-29 22:16:42 +00:00
<copy file= "apps/addressbook/dist/addressbook.war" todir= "build/" />
2004-04-08 04:41:54 +00:00
</target>
<target name= "javadoc" >
<mkdir dir= "./build" />
<mkdir dir= "./build/javadoc" />
2004-09-26 15:16:44 +00:00
<javadoc access= "package"
2004-04-08 04:41:54 +00:00
destdir="./build/javadoc"
packagenames="*"
use="true"
2004-09-02 21:26:03 +00:00
group="SDK net.i2p:net.i2p.*:net.i2p.client:net.i2p.client.*:freenet.support.CPUInformation,
Streaming net.i2p.client.streaming,
2008-10-11 16:50:20 +00:00
BOB net.i2p.BOB,
SAM net.i2p.sam:net.i2p.sam.client,
2004-09-02 21:26:03 +00:00
RouterConsole net.i2p.router.web,
Router net.i2p.router:net.i2p.router.*:net.i2p.data.i2np,
Systray net.i2p.apps.systray,
I2PTunnel net.i2p.i2ptunnel:net.i2p.i2ptunnel.*"
2004-04-08 04:41:54 +00:00
splitindex="true"
2004-09-02 21:26:03 +00:00
windowtitle="I2P">
<sourcepath >
<pathelement location= "core/java/src" />
2005-07-11 23:06:23 +00:00
<!-- <pathelement location="core/java/test" /> -->
2004-09-02 21:26:03 +00:00
<pathelement location= "router/java/src" />
2005-07-11 23:06:23 +00:00
<!-- <pathelement location="router/java/test" /> -->
2004-09-02 21:26:03 +00:00
<pathelement location= "apps/ministreaming/java/src" />
2004-10-28 02:11:52 +00:00
<pathelement location= "apps/streaming/java/src" />
2004-09-02 21:26:03 +00:00
<pathelement location= "apps/i2ptunnel/java/src" />
<pathelement location= "apps/systray/java/src" />
<pathelement location= "apps/routerconsole/java/src" />
2008-02-06 16:38:23 +00:00
<pathelement location= "apps/addressbook/java/src" />
<pathelement location= "apps/i2psnark/java/src" />
<pathelement location= "apps/sam/java/src" />
2008-10-07 18:30:07 +00:00
<pathelement location= "apps/BOB/src" />
2004-09-02 21:26:03 +00:00
</sourcepath>
<classpath >
<pathelement location= "apps/jetty/jettylib/org.mortbay.jetty.jar" />
2008-10-12 17:07:21 +00:00
<pathelement location= "apps/jetty/jettylib/javax.servlet.jar" />
2004-09-02 21:26:03 +00:00
<pathelement location= "apps/systray/java/lib/systray4j.jar" />
2008-10-12 17:07:21 +00:00
<pathelement location= "apps/jrobin/jrobin-1.4.0.jar" />
2004-09-02 21:26:03 +00:00
<pathelement location= "installer/lib/wrapper/win32/wrapper.jar" />
2008-10-12 17:07:21 +00:00
<pathelement location= "core/lib/junit.jar" />
2004-09-02 21:26:03 +00:00
</classpath>
</javadoc>
2004-04-08 04:41:54 +00:00
</target>
2004-08-19 21:26:11 +00:00
<target name= "clean" depends= "pkgclean" >
2004-04-08 04:41:54 +00:00
<delete dir= "./build" />
2005-09-17 07:31:48 +00:00
<delete file= "i2pinstall.exe" failonerror= "false" quiet= "true" />
2005-12-03 05:41:25 +00:00
<delete file= "i2p.exe" failonerror= "false" quiet= "true" />
<delete file= "syndie-standalone.zip" failonerror= "false" quiet= "true" />
2005-12-18 05:39:52 +00:00
<delete file= "i2psnark-standalone.zip" failonerror= "false" quiet= "true" />
2004-04-08 04:41:54 +00:00
</target>
<target name= "distclean" depends= "clean" >
<ant dir= "core/java/" target= "distclean" />
<ant dir= "router/java/" target= "distclean" />
<ant dir= "apps/ministreaming/java/" target= "distclean" />
2004-10-28 02:11:52 +00:00
<ant dir= "apps/streaming/java/" target= "distclean" />
2004-04-08 04:41:54 +00:00
<ant dir= "apps/i2ptunnel/java/" target= "distclean" />
2004-04-13 04:41:14 +00:00
<ant dir= "apps/sam/java/" target= "distclean" />
2008-10-07 18:30:07 +00:00
<ant dir= "apps/BOB" target= "clean" />
2004-08-01 05:31:15 +00:00
<ant dir= "apps/routerconsole/java/" target= "distclean" />
2004-12-29 22:16:42 +00:00
<ant dir= "apps/addressbook/" target= "distclean" />
2005-02-17 20:55:07 +00:00
<ant dir= "apps/susimail/" target= "distclean" />
2005-09-16 04:12:24 +00:00
<ant dir= "apps/susidns/src/" target= "distclean" />
2004-08-24 06:58:05 +00:00
<ant dir= "apps/systray/java/" target= "distclean" />
2005-10-19 23:23:19 +00:00
<ant dir= "apps/i2psnark/java/" target= "distclean" />
2004-04-16 03:08:01 +00:00
<delete >
<fileset dir= "." includes= "**/*.class" />
<fileset dir= "." includes= "**/*.java~" />
</delete>
2004-04-08 04:41:54 +00:00
</target>
2009-07-31 17:56:02 +00:00
<target name= "pkg" depends= "distclean, updater, preppkg, installer" />
2009-06-05 00:59:44 +00:00
<target name= "pkgclean" depends= "deletepkg-temp" >
2004-08-17 05:53:56 +00:00
<delete >
2004-09-30 06:57:22 +00:00
<fileset dir= "." includes= "i2p.tar.bz2 install.jar i2pupdate.zip" />
2004-08-17 05:53:56 +00:00
</delete>
</target>
2009-06-05 00:59:44 +00:00
<target name= "preppkg" depends= "build, buildexe, preplicenses, prepconsoleDocs" >
2004-08-17 05:53:56 +00:00
<copy file= "build/i2p.jar" todir= "pkg-temp/lib/" />
<copy file= "build/i2ptunnel.jar" todir= "pkg-temp/lib/" />
<copy file= "build/jasper-compiler.jar" todir= "pkg-temp/lib/" />
<copy file= "build/jasper-runtime.jar" todir= "pkg-temp/lib/" />
2005-02-16 jrandom
* (Merged the 0.5-pre branch back into CVS HEAD)
* Replaced the old tunnel routing crypto with the one specified in
router/doc/tunnel-alt.html, including updates to the web console to view
and tweak it.
* Provide the means for routers to reject tunnel requests with a wider
range of responses:
probabalistic rejection, due to approaching overload
transient rejection, due to temporary overload
bandwidth rejection, due to persistent bandwidth overload
critical rejection, due to general router fault (or imminent shutdown)
The different responses are factored into the profiles accordingly.
* Replaced the old I2CP tunnel related options (tunnels.depthInbound, etc)
with a series of new properties, relevent to the new tunnel routing code:
inbound.nickname (used on the console)
inbound.quantity (# of tunnels to use in any leaseSets)
inbound.backupQuantity (# of tunnels to keep in the ready)
inbound.length (# of remote peers in the tunnel)
inbound.lengthVariance (if > 0, permute the length by adding a random #
up to the variance. if < 0, permute the length
by adding or subtracting a random # up to the
variance)
outbound.* (same as the inbound, except for the, uh, outbound tunnels
in that client's pool)
There are other options, and more will be added later, but the above are
the most relevent ones.
* Replaced Jetty 4.2.21 with Jetty 5.1.2
* Compress all profile data on disk.
* Adjust the reseeding functionality to work even when the JVM's http proxy
is set.
* Enable a poor-man's interactive-flow in the streaming lib by choking the
max window size.
* Reduced the default streaming lib max message size to 16KB (though still
configurable by the user), also doubling the default maximum window
size.
* Replaced the RouterIdentity in a Lease with its SHA256 hash.
* Reduced the overall I2NP message checksum from a full 32 byte SHA256 to
the first byte of the SHA256.
* Added a new "netId" flag to let routers drop references to other routers
who we won't be able to talk to.
* Extended the timestamper to get a second (or third) opinion whenever it
wants to actually adjust the clock offset.
* Replaced that kludge of a timestamp I2NP message with a full blown
DateMessage.
* Substantial memory optimizations within the router and the SDK to reduce
GC churn. Client apps and the streaming libs have not been tuned,
however.
* More bugfixes thank you can shake a stick at.
2005-02-13 jrandom
* Updated jbigi source to handle 64bit CPUs. The bundled jbigi.jar still
only contains 32bit versions, so build your own, placing libjbigi.so in
your install dir if necessary. (thanks mule!)
* Added support for libjbigi-$os-athlon64 to NativeBigInteger and CPUID
(thanks spaetz!)
2005-02-16 22:23:47 +00:00
<copy file= "build/commons-logging.jar" todir= "pkg-temp/lib/" />
<copy file= "build/commons-el.jar" todir= "pkg-temp/lib/" />
2004-08-17 05:53:56 +00:00
<copy file= "build/javax.servlet.jar" todir= "pkg-temp/lib/" />
2004-08-24 06:58:05 +00:00
<copy file= "build/jbigi.jar" todir= "pkg-temp/lib" />
2004-08-17 05:53:56 +00:00
<copy file= "build/mstreaming.jar" todir= "pkg-temp/lib/" />
2004-10-28 02:11:52 +00:00
<copy file= "build/streaming.jar" todir= "pkg-temp/lib/" />
2004-08-17 05:53:56 +00:00
<copy file= "build/org.mortbay.jetty.jar" todir= "pkg-temp/lib/" />
<copy file= "build/router.jar" todir= "pkg-temp/lib/" />
<copy file= "build/routerconsole.jar" todir= "pkg-temp/lib/" />
<copy file= "build/sam.jar" todir= "pkg-temp/lib/" />
2008-10-07 18:30:07 +00:00
<copy file= "build/BOB.jar" todir= "pkg-temp/lib/" />
2004-08-24 06:58:05 +00:00
<copy file= "build/systray.jar" todir= "pkg-temp/lib" />
2007-05-06 19:52:39 +00:00
<!-- <copy file="build/sucker.jar" todir="pkg - temp/lib" /> -->
2005-10-19 23:23:19 +00:00
<copy file= "build/i2psnark.jar" todir= "pkg-temp/lib/" />
2005-09-17 07:31:48 +00:00
<copy file= "i2p.exe" todir= "pkg-temp/" failonerror= "false" />
2005-09-16 04:12:24 +00:00
<copy file= "installer/resources/runplain.sh" todir= "pkg-temp/" />
2004-08-24 06:58:05 +00:00
<copy file= "apps/systray/java/lib/systray4j.jar" todir= "pkg-temp/lib" />
<copy file= "apps/systray/java/lib/systray4j.dll" todir= "pkg-temp/lib" />
<copy file= "apps/systray/java/resources/iggy.ico" todir= "pkg-temp/icons" />
<copy file= "apps/systray/java/resources/iggy.xpm" todir= "pkg-temp/icons" />
2004-08-17 05:53:56 +00:00
<copy file= "build/i2ptunnel.war" todir= "pkg-temp/webapps/" />
<copy file= "build/routerconsole.war" todir= "pkg-temp/webapps/" />
2004-12-29 22:16:42 +00:00
<copy file= "build/addressbook.war" todir= "pkg-temp/webapps/" />
2005-02-17 20:55:07 +00:00
<copy file= "build/susimail.war" todir= "pkg-temp/webapps/" />
2005-09-16 04:12:24 +00:00
<copy file= "build/susidns.war" todir= "pkg-temp/webapps/" />
2007-03-24 07:57:37 +00:00
<!-- <copy file="build/syndie.war" todir="pkg - temp/webapps/" /> -->
2005-12-16 03:00:48 +00:00
<copy file= "build/i2psnark.war" todir= "pkg-temp/webapps/" />
2009-06-15 15:22:51 +00:00
<copy file= "apps/i2psnark/launch-i2psnark" todir= "pkg-temp/" />
2005-12-22 12:49:09 +00:00
<copy file= "apps/i2psnark/jetty-i2psnark.xml" todir= "pkg-temp/" />
2008-12-03 01:49:19 +00:00
<copy file= "apps/i2psnark/i2psnark.config" todir= "pkg-temp/" />
2008-12-03 14:26:39 +00:00
<copy file= "installer/resources/blocklist.txt" todir= "pkg-temp/" />
2004-08-19 21:26:11 +00:00
<copy file= "installer/resources/clients.config" todir= "pkg-temp/" />
2005-04-08 01:56:02 +00:00
<copy file= "installer/resources/eepget" todir= "pkg-temp/" />
2004-08-24 12:25:46 +00:00
<copy file= "installer/resources/i2prouter" todir= "pkg-temp/" />
<copy file= "installer/resources/i2prouter.bat" todir= "pkg-temp/" />
2009-06-11 13:31:27 +00:00
<copy file= "installer/resources/fixperms.bat" todir= "pkg-temp/" />
2004-08-24 12:25:46 +00:00
<copy file= "installer/resources/i2ptunnel.config" todir= "pkg-temp/" />
2004-09-03 16:52:27 +00:00
<!-- <copy file="installer/resources/install_i2p_service_unix" todir="pkg - temp/" /> -->
2004-08-24 12:25:46 +00:00
<copy file= "installer/resources/install_i2p_service_winnt.bat" todir= "pkg-temp/" />
2004-08-25 11:20:56 +00:00
<copy file= "installer/resources/osid" todir= "pkg-temp/" />
<copy file= "installer/resources/postinstall.bat" todir= "pkg-temp/" />
2004-08-26 19:08:25 +00:00
<copy file= "installer/resources/postinstall.sh" todir= "pkg-temp/" />
2004-08-24 12:25:46 +00:00
<copy file= "installer/resources/systray.config" todir= "pkg-temp/" />
2004-09-03 16:52:27 +00:00
<!-- <copy file="installer/resources/uninstall_i2p_service_unix" todir="pkg - temp/" /> -->
2004-08-24 12:25:46 +00:00
<copy file= "installer/resources/uninstall_i2p_service_winnt.bat" todir= "pkg-temp/" />
2004-09-08 22:04:13 +00:00
<copy file= "installer/resources/wrapper.config" todir= "pkg-temp/" />
2004-08-25 11:20:56 +00:00
<copy todir= "pkg-temp/lib/wrapper/freebsd/" >
<fileset dir= "installer/lib/wrapper/freebsd/" />
</copy>
<copy todir= "pkg-temp/lib/wrapper/linux/" >
<fileset dir= "installer/lib/wrapper/linux/" />
</copy>
2005-09-19 00:36:59 +00:00
<copy todir= "pkg-temp/lib/wrapper/linux64/" >
<fileset dir= "installer/lib/wrapper/linux64/" />
</copy>
2004-08-25 11:20:56 +00:00
<copy todir= "pkg-temp/lib/wrapper/macosx/" >
<fileset dir= "installer/lib/wrapper/macosx/" />
</copy>
<copy todir= "pkg-temp/lib/wrapper/solaris/" >
<fileset dir= "installer/lib/wrapper/solaris/" />
</copy>
<copy todir= "pkg-temp/lib/wrapper/win32/" >
<fileset dir= "installer/lib/wrapper/win32/" />
</copy>
<copy file= "hosts.txt" todir= "pkg-temp/" />
2009-06-01 20:03:00 +00:00
<copy file= "INSTALL-headless.txt" todir= "pkg-temp/" />
2004-09-02 20:00:28 +00:00
<copy file= "history.txt" todir= "pkg-temp/" />
2005-02-03 13:39:46 +00:00
<mkdir dir= "pkg-temp/scripts" />
<copy file= "apps/proxyscript/i2pProxy.pac" todir= "pkg-temp/scripts/" />
<copy file= "core/perl/i2pbench.sh" todir= "pkg-temp/scripts/" />
<copy file= "core/perl/i2ptest.sh" todir= "pkg-temp/scripts/" />
2005-12-13 09:43:41 +00:00
<!-- polecat: please put your modified toolbar.html in installer/resources/toolbar.html
and uncomment the following -->
<!-- <copy file="installer/resources/toolbar.html" todir="pkg - temp/docs/" /> -->
2005-03-24 04:58:28 +00:00
<copy file= "initialNews.xml" tofile= "pkg-temp/docs/news.xml" />
2004-11-25 21:57:19 +00:00
<copy file= "installer/resources/startconsole.html" todir= "pkg-temp/docs/" />
<copy file= "installer/resources/start.ico" todir= "pkg-temp/docs/" />
<copy file= "installer/resources/console.ico" todir= "pkg-temp/docs/" />
<copy file= "installer/resources/uninstall.ico" todir= "pkg-temp/docs/" />
2005-11-12 05:03:51 +00:00
<mkdir dir= "pkg-temp/docs/themes/" />
<copy todir= "pkg-temp/docs/themes/" >
<fileset dir= "installer/resources/themes/" />
</copy>
2004-09-30 06:57:22 +00:00
<mkdir dir= "pkg-temp/eepsite" />
<mkdir dir= "pkg-temp/eepsite/webapps" />
<mkdir dir= "pkg-temp/eepsite/logs" />
<mkdir dir= "pkg-temp/eepsite/docroot" />
2005-02-16 jrandom
* (Merged the 0.5-pre branch back into CVS HEAD)
* Replaced the old tunnel routing crypto with the one specified in
router/doc/tunnel-alt.html, including updates to the web console to view
and tweak it.
* Provide the means for routers to reject tunnel requests with a wider
range of responses:
probabalistic rejection, due to approaching overload
transient rejection, due to temporary overload
bandwidth rejection, due to persistent bandwidth overload
critical rejection, due to general router fault (or imminent shutdown)
The different responses are factored into the profiles accordingly.
* Replaced the old I2CP tunnel related options (tunnels.depthInbound, etc)
with a series of new properties, relevent to the new tunnel routing code:
inbound.nickname (used on the console)
inbound.quantity (# of tunnels to use in any leaseSets)
inbound.backupQuantity (# of tunnels to keep in the ready)
inbound.length (# of remote peers in the tunnel)
inbound.lengthVariance (if > 0, permute the length by adding a random #
up to the variance. if < 0, permute the length
by adding or subtracting a random # up to the
variance)
outbound.* (same as the inbound, except for the, uh, outbound tunnels
in that client's pool)
There are other options, and more will be added later, but the above are
the most relevent ones.
* Replaced Jetty 4.2.21 with Jetty 5.1.2
* Compress all profile data on disk.
* Adjust the reseeding functionality to work even when the JVM's http proxy
is set.
* Enable a poor-man's interactive-flow in the streaming lib by choking the
max window size.
* Reduced the default streaming lib max message size to 16KB (though still
configurable by the user), also doubling the default maximum window
size.
* Replaced the RouterIdentity in a Lease with its SHA256 hash.
* Reduced the overall I2NP message checksum from a full 32 byte SHA256 to
the first byte of the SHA256.
* Added a new "netId" flag to let routers drop references to other routers
who we won't be able to talk to.
* Extended the timestamper to get a second (or third) opinion whenever it
wants to actually adjust the clock offset.
* Replaced that kludge of a timestamp I2NP message with a full blown
DateMessage.
* Substantial memory optimizations within the router and the SDK to reduce
GC churn. Client apps and the streaming libs have not been tuned,
however.
* More bugfixes thank you can shake a stick at.
2005-02-13 jrandom
* Updated jbigi source to handle 64bit CPUs. The bundled jbigi.jar still
only contains 32bit versions, so build your own, placing libjbigi.so in
your install dir if necessary. (thanks mule!)
* Added support for libjbigi-$os-athlon64 to NativeBigInteger and CPUID
(thanks spaetz!)
2005-02-16 22:23:47 +00:00
<mkdir dir= "pkg-temp/eepsite/cgi-bin" />
2004-09-30 06:57:22 +00:00
<copy file= "installer/resources/eepsite_index.html" tofile= "pkg-temp/eepsite/docroot/index.html" />
2009-07-24 14:16:16 +00:00
<copy file= "installer/resources/eepsite_index_de.html" tofile= "pkg-temp/eepsite/docroot/index_de.html" />
<copy file= "installer/resources/eepsite.css" todir= "pkg-temp/eepsite/docroot/" />
2009-07-21 15:46:47 +00:00
<copy file= "installer/resources/robots.txt" todir= "pkg-temp/eepsite/docroot/" />
2009-06-29 04:20:21 +00:00
<copy file= "installer/resources/themes/console/images/favicon.ico" tofile= "pkg-temp/eepsite/docroot/favicon.ico" />
2004-09-30 06:57:22 +00:00
<copy file= "installer/resources/jetty.xml" tofile= "pkg-temp/eepsite/jetty.xml" />
2009-06-05 00:59:44 +00:00
</target>
<target name= "preplicenses" >
2009-02-14 19:49:00 +00:00
<copy file= "LICENSE.txt" todir= "pkg-temp/" />
<copy todir= "pkg-temp/licenses/" >
<fileset dir= "licenses/" />
</copy>
2009-06-05 00:59:44 +00:00
<copy file= "installer/lib/launch4j/lib/foxtrot.LICENSE.txt" tofile= "pkg-temp/licenses/LICENSE-Foxtrot.txt" />
<copy file= "installer/lib/launch4j/lib/JGoodies.Forms.LICENSE.txt" tofile= "pkg-temp/licenses/LICENSE-JGoodies-Forms.txt" />
<copy file= "installer/lib/launch4j/lib/JGoodies.Looks.LICENSE.txt" tofile= "pkg-temp/licenses/LICENSE-JGoodies-Looks.txt" />
<copy file= "installer/lib/launch4j/lib/XStream.LICENSE.txt" tofile= "pkg-temp/licenses/LICENSE-XStream.txt" />
2004-08-17 05:53:56 +00:00
</target>
2009-06-27 01:11:53 +00:00
<target name= "prepthemeupdates" >
2009-07-21 16:37:44 +00:00
<!-- Add extricated I2PSnark css here, for now -->
<copy file= "installer/resources/themes/console/snark.css" todir= "pkg-temp/docs/themes/console/" />
2009-06-28 12:50:33 +00:00
<!-- these files now in docs/, not in the .war -->
2009-07-24 00:08:08 +00:00
<!-- No need to copy these individually, we're copying the whole dir below..
2009-06-28 12:50:33 +00:00
<copy file= "installer/resources/themes/console/images/favicon.ico" todir= "pkg-temp/docs/themes/console/images/" />
<copy file= "installer/resources/themes/console/images/i2plogo.png" todir= "pkg-temp/docs/themes/console/images/" />
2009-07-24 00:08:08 +00:00
-->
2009-06-28 12:50:33 +00:00
<!-- Since the logo moved, we have to update the error pages -->
<copy todir= "pkg-temp/docs/" >
<fileset dir= "installer/resources/" includes= "*-header.ht" />
</copy>
2009-06-27 01:11:53 +00:00
<!-- make a "classic" theme -->
<copy todir= "pkg-temp/docs/themes/console/classic/" >
<fileset dir= "installer/resources/themes/console/classic/" />
</copy>
2009-07-07 01:55:58 +00:00
<!-- Add dark theme -->
<copy todir= "pkg-temp/docs/themes/console/dark/" >
<fileset dir= "installer/resources/themes/console/dark/" />
</copy>
<!-- Add light theme -->
<copy todir= "pkg-temp/docs/themes/console/light/" >
<fileset dir= "installer/resources/themes/console/light/" />
2009-07-24 00:08:08 +00:00
</copy>
<!-- Add shared images.. these are subject to flux and change! -->
<copy todir= "pkg-temp/docs/themes/console/images/" >
<fileset dir= "installer/resources/themes/console/images/" />
</copy>
2009-07-13 03:04:17 +00:00
<copy todir= "pkg-temp/docs/" >
<fileset dir= "." includes= "readme*.html" />
</copy>
2009-06-27 01:11:53 +00:00
</target>
2009-06-11 13:31:27 +00:00
<!-- this is no longer required, izpack 4.3.0 supports headless installs with java - jar i2pinstall.exe - console -->
2004-08-17 05:53:56 +00:00
<target name= "tarball" depends= "preppkg" >
<tar compression= "bzip2" destfile= "i2p.tar.bz2" >
<tarfileset dir= "pkg-temp" includes= "**/*" prefix= "i2p" />
</tar>
</target>
2009-06-05 00:59:44 +00:00
<target name= "deletepkg-temp" >
2009-04-30 14:53:46 +00:00
<delete dir= "pkg-temp" />
2009-06-05 00:59:44 +00:00
</target>
2009-06-07 14:13:01 +00:00
<target name= "prepconsoleDocs" depends= "prepgeoupdate" >
2009-04-30 14:53:46 +00:00
<copy todir= "pkg-temp/docs/" >
<fileset dir= "." includes= "readme*.html" />
<fileset dir= "installer/resources/" includes= "*-header.ht" />
</copy>
</target>
2009-06-05 00:59:44 +00:00
<target name= "consoleDocs" depends= "deletepkg-temp, prepconsoleDocs" >
<zip destfile= "docs.zip" basedir= "pkg-temp" whenempty= "fail" />
</target>
<target name= "updater" depends= "prepupdate, preplicenses, zipit" />
2009-06-07 14:13:01 +00:00
<target name= "updaterWithGeoIP" depends= "prepupdate, prepgeoupdate, preplicenses, zipit" />
2009-06-05 00:59:44 +00:00
<target name= "updaterWithJetty" depends= "prepjupdate, preplicenses, zipit" />
<target name= "updaterWithJettyFixes" depends= "prepjupdatefixes, preplicenses, zipit" />
2009-06-07 14:13:01 +00:00
<target name= "updaterWithJettyFixesAndGeoIP" depends= "prepjupdatefixes, prepgeoupdate, preplicenses, zipit" />
2009-05-19 18:07:19 +00:00
<target name= "updaterSmall" depends= "prepupdateSmall, zipit" />
<target name= "updaterRouter" depends= "prepupdateRouter, zipit" />
<target name= "zipit" >
2009-06-05 00:59:44 +00:00
<zip destfile= "i2pupdate.zip" basedir= "pkg-temp" whenempty= "fail" />
2008-05-26 14:39:39 +00:00
</target>
2005-07-11 23:06:23 +00:00
<target name= "updateTest" depends= "prepupdate" >
<ant dir= "core/java/" target= "jarTest" />
<copy file= "core/java/build/i2ptest.jar" todir= "pkg-temp/lib" />
<zip destfile= "i2pupdate.zip" basedir= "pkg-temp" />
</target>
2008-11-09 15:46:08 +00:00
<target name= "prepupdate" depends= "build2, prepupdateSmall" >
2008-10-07 18:30:07 +00:00
<copy file= "build/BOB.jar" todir= "pkg-temp/lib/" />
2008-05-26 13:13:26 +00:00
<copy file= "build/sam.jar" todir= "pkg-temp/lib/" />
<copy file= "build/i2psnark.jar" todir= "pkg-temp/lib" />
2009-06-06 15:36:06 +00:00
<!-- include systray changes in 0.7.5 -->
2008-11-26 18:32:51 +00:00
<copy file= "build/systray.jar" todir= "pkg-temp/lib/" />
2008-05-26 13:13:26 +00:00
<copy file= "build/susimail.war" todir= "pkg-temp/webapps/" />
<copy file= "build/susidns.war" todir= "pkg-temp/webapps/" />
<copy file= "build/i2psnark.war" todir= "pkg-temp/webapps/" />
<copy file= "history.txt" todir= "pkg-temp/" />
<copy file= "news.xml" todir= "pkg-temp/docs/" />
</target>
2009-06-27 01:11:53 +00:00
<target name= "prepupdateSmall" depends= "buildSmall, prepupdateRouter, prepthemeupdates" >
2004-09-02 21:26:03 +00:00
<copy file= "build/i2ptunnel.jar" todir= "pkg-temp/lib/" />
<copy file= "build/mstreaming.jar" todir= "pkg-temp/lib/" />
2004-10-28 02:11:52 +00:00
<copy file= "build/streaming.jar" todir= "pkg-temp/lib/" />
2004-09-02 21:26:03 +00:00
<copy file= "build/routerconsole.jar" todir= "pkg-temp/lib/" />
<copy file= "build/i2ptunnel.war" todir= "pkg-temp/webapps/" />
<copy file= "build/routerconsole.war" todir= "pkg-temp/webapps/" />
2004-12-29 22:16:42 +00:00
<copy file= "build/addressbook.war" todir= "pkg-temp/webapps/" />
2009-01-22 17:36:03 +00:00
<!-- New readme_*.html files - For one release only -->
2009-05-24 14:30:55 +00:00
<copy file= "readme_zh.html" todir= "pkg-temp/docs/" />
2004-09-02 21:26:03 +00:00
</target>
2009-06-05 00:59:44 +00:00
<target name= "prepupdateRouter" depends= "buildrouter, deletepkg-temp" >
2008-05-26 14:39:39 +00:00
<copy file= "build/i2p.jar" todir= "pkg-temp/lib/" />
<copy file= "build/router.jar" todir= "pkg-temp/lib/" />
</target>
2009-06-07 14:13:01 +00:00
<target name= "prepgeoupdate" >
2009-05-19 18:07:19 +00:00
<copy file= "installer/resources/geoip.txt" todir= "pkg-temp/geoip/" />
<copy file= "installer/resources/countries.txt" todir= "pkg-temp/geoip/" />
2009-05-22 13:23:52 +00:00
<copy todir= "pkg-temp/docs/icons/flags" >
2009-05-19 18:07:19 +00:00
<fileset dir= "installer/resources/icons/flags" />
</copy>
</target>
2007-03-03 20:30:52 +00:00
<target name= "prepjupdate" depends= "prepupdate, buildWEB" >
<copy file= "build/jasper-compiler.jar" todir= "pkg-temp/lib/" />
<copy file= "build/jasper-runtime.jar" todir= "pkg-temp/lib/" />
<copy file= "build/commons-logging.jar" todir= "pkg-temp/lib/" />
<copy file= "build/commons-el.jar" todir= "pkg-temp/lib/" />
<copy file= "build/javax.servlet.jar" todir= "pkg-temp/lib/" />
<copy file= "build/org.mortbay.jetty.jar" todir= "pkg-temp/lib/" />
</target>
2009-04-26 16:27:44 +00:00
<target name= "prepjupdatefixes" depends= "prepupdate, buildWEB" >
<copy file= "build/org.mortbay.jetty.jar" todir= "pkg-temp/lib/" />
</target>
2004-08-17 20:43:11 +00:00
<target name= "installer" depends= "preppkg" >
2005-10-18 00:39:46 +00:00
<taskdef name= "izpack" classpath= "${basedir}/installer/lib/izpack/standalone-compiler.jar" classname= "com.izforge.izpack.ant.IzPackTask" />
2009-06-11 23:38:15 +00:00
<mkdir dir= "pkg-temp/installer" />
<jar destfile= "./pkg-temp/installer/copy.jar" basedir= "./core/java/build/obj" includes= "net/i2p/util/Copy.class net/i2p/util/FileUtil.class" >
2004-11-25 21:57:19 +00:00
<manifest > <attribute name= "Main-Class" value= "net.i2p.util.Copy" /> </manifest>
</jar>
2009-06-11 23:38:15 +00:00
<jar destfile= "./pkg-temp/installer/delete.jar" basedir= "./core/java/build/obj" includes= "net/i2p/util/Delete.class net/i2p/util/FileUtil.class" >
2004-11-25 21:57:19 +00:00
<manifest > <attribute name= "Main-Class" value= "net.i2p.util.Delete" /> </manifest>
</jar>
2009-06-11 23:38:15 +00:00
<jar destfile= "./pkg-temp/installer/exec.jar" basedir= "./core/java/build/obj" includes= "net/i2p/util/Exec.class" >
2004-11-25 21:57:19 +00:00
<manifest > <attribute name= "Main-Class" value= "net.i2p.util.Exec" /> </manifest>
</jar>
2004-08-17 20:43:11 +00:00
<izpack input= "${basedir}/installer/install.xml" output= "${basedir}/install.jar" installerType= "standard" basedir= "${basedir}" />
2005-09-16 04:12:24 +00:00
<ant target= "installerexe" />
</target>
<target name= "installerexe" >
2005-09-20 03:17:06 +00:00
<condition property= "noExe" >
<os arch= "x86_64" />
</condition>
<condition property= "noExe" >
<os arch= "amd64" />
</condition>
2005-10-30 01:07:09 +00:00
<condition property= "noExe" >
<not >
<or >
<os name= "Linux" />
<os family= "windows" />
</or>
</not>
</condition>
2005-09-17 07:31:48 +00:00
<ant target= "doInstallerEXE" />
</target>
2005-09-20 03:17:06 +00:00
<target name= "doInstallerEXE" unless= "noExe" >
2005-09-16 04:12:24 +00:00
<!-- now the installer exe -->
<taskdef name= "launch4j"
classname="net.sf.launch4j.ant.Launch4jTask"
classpath="${basedir}/installer/lib/launch4j/launch4j.jar:${basedir}/installer/lib/launch4j/lib/xstream.jar" />
<launch4j configFile= "./installer/i2pinstaller.xml" />
<launch4j configFile= "./installer/i2pstandalone.xml" />
<!-- thazzit -->
2004-08-17 20:43:11 +00:00
</target>
2005-06-23 02:11:04 +00:00
<target name= "test" >
<ant dir= "core/java/" target= "test" />
</target>
<target name= "junit.report" >
<ant dir= "core/java/" target= "junit.report" />
</target>
<target name= "clover.report" >
<ant dir= "core/java/" target= "clover.report" />
</target>
<target name= "test.report" depends= "junit.report, clover.report" />
<target name= "fulltest" >
<ant dir= "core/java/" target= "fulltest" />
2005-09-13 09:06:07 +00:00
<ant dir= "router/java/" target= "fulltest" />
</target>
<target name= "fullclovertest" >
<ant dir= "core/java/" target= "fullclovertest" />
<ant dir= "router/java/" target= "fullclovertest" />
2005-06-23 02:11:04 +00:00
</target>
2005-12-03 05:41:25 +00:00
<target name= "syndie" >
<ant dir= "apps/syndie/java/" target= "standalone" />
<copy file= "apps/syndie/java/syndie-standalone.zip" todir= "." />
</target>
2005-12-18 05:39:52 +00:00
<target name= "i2psnark" >
<ant dir= "apps/i2psnark/java" target= "standalone" />
<copy file= "apps/i2psnark/java/i2psnark-standalone.zip" todir= "." />
</target>
2009-02-02 01:22:31 +00:00
<target name= "slackpkg" >
<echo message= "Building Slackware package." />
<ant dir= "Slackware/i2p/" target= "slackpkg" />
<ant dir= "Slackware/i2p-base/" target= "slackpkg" />
</target>
2008-12-06 00:11:13 +00:00
<target name= "findbugs" depends= "build2" >
<echo message= "Starting findbugs, this will take a while..." />
<exec executable= "nice" >
<arg value= "findbugs" />
<arg value= "-textui" />
<arg value= "-projectName" />
<arg value= "i2p" />
<arg value= "-sortByClass" />
<arg value= "-xml" />
<arg value= "-output" />
<arg value= "findbugs.xml" />
<arg value= "-auxclasspath" />
2009-05-16 04:06:01 +00:00
<arg value= "build/commons-el.jar:build/commons-logging.jar:build/jasper-compiler.jar:build/jasper-runtime.jar:build/javax.servlet.jar:build/org.mortbay.jetty.jar:apps/jrobin/jrobin-1.4.0.jar:apps/systray/java/lib/systray4j.jar:installer/lib/wrapper/linux/wrapper.jar" />
2008-12-06 00:11:13 +00:00
<arg value= "-sourcepath" />
<arg value= "apps/BOB/src/:apps/addressbook/java/src/:apps/i2psnark/java/src/:apps/i2ptunnel/java/src/:apps/ministreaming/java/src/:apps/routerconsole/java/src/:apps/sam/java/src/:apps/streaming/java/src/:apps/susidns/src/java/src/:apps/susimail/src/src/:apps/systray/java/src/:core/java/src/:router/java/src/" />
<!-- start of the files to be analyzed -->
<arg value= "build/BOB.jar" />
<arg value= "build/addressbook.war" />
<arg value= "build/i2p.jar" />
<arg value= "build/i2psnark.jar" />
<arg value= "build/i2psnark.war" />
<arg value= "build/i2ptunnel.jar" />
<arg value= "build/i2ptunnel.war" />
<arg value= "build/jbigi.jar" />
<arg value= "build/mstreaming.jar" />
<arg value= "build/router.jar/" />
<!-- use the class files rather than the jar for routerconsole so we don't analyze jrobin -->
<arg value= "apps/routerconsole/java/build/obj/" />
<arg value= "build/sam.jar" />
<arg value= "build/streaming.jar" />
<arg value= "build/susidns.war" />
<arg value= "build/susimail.war" />
<arg value= "build/systray.jar" />
</exec>
<echo message= "Findbugs output stored in findbugs.xml" />
</target>
2009-05-21 22:32:34 +00:00
<target name= "buildWithDesktopgui" depends= "buildrouter,builddepSmall" >
2009-04-09 20:36:22 +00:00
<ant dir= "apps/desktopgui" target= "build_jar" />
2009-04-07 19:18:51 +00:00
</target>
<target name= "preppkgWithDesktopgui" depends= "buildWithDesktopgui,preppkg" >
<copy file= "apps/desktopgui/dist/desktopgui.jar" todir= "pkg-temp/lib/" />
<copy file= "apps/desktopgui/lib/swing-worker.jar" todir= "pkg-temp/lib/" />
<copy file= "apps/desktopgui/lib/appframework.jar" todir= "pkg-temp/lib/" />
<mkdir dir= "pkg-temp/desktopgui/resources/" />
<copy todir= "pkg-temp/desktopgui/resources/" >
<fileset dir= "apps/desktopgui/desktopgui/resources/" />
</copy>
</target>
<target name= "installerWithDesktopgui" depends= "preppkgWithDesktopgui,installer" />
<target name= "prepupdateWithDesktopgui" depends= "buildWithDesktopgui,prepupdate" >
<copy file= "apps/desktopgui/dist/desktopgui.jar" todir= "pkg-temp/lib/" />
<copy file= "apps/desktopgui/lib/swing-worker.jar" todir= "pkg-temp/lib/" />
<copy file= "apps/desktopgui/lib/appframework.jar" todir= "pkg-temp/lib/" />
<mkdir dir= "pkg-temp/desktopgui/resources/" />
<copy todir= "pkg-temp/desktopgui/resources/" >
<fileset dir= "apps/desktopgui/desktopgui/resources/" />
</copy>
</target>
<target name= "updaterWithDesktopgui" depends= "prepupdateWithDesktopgui,updater" />
2009-06-11 13:31:27 +00:00
<target name= "pkgWithDesktopgui" depends= "distclean, updaterWithDesktopgui, installerWithDesktopgui, preppkg" />
2009-04-08 10:13:56 +00:00
<target name= "distWithDesktopgui" depends= "pkgWithDesktopgui, javadoc" />
2009-04-07 19:18:51 +00:00
<target name= "distcleanWithDesktopgui" depends= "distclean" >
2009-04-09 20:36:22 +00:00
<ant dir= "apps/desktopgui" target= "build_clean" />
2009-04-07 19:18:51 +00:00
</target>
2009-07-31 02:36:15 +00:00
<target name= "release" depends= "pkg" >
<echo message= "================================================================" />
<echo message= "Did you update these files?" />
<exec executable= "ls" >
<arg value= "-l" />
<arg value= "history.txt" />
<arg value= "initialNews.xml" />
<arg value= "installer/install.xml" />
<arg value= "news.xml" />
<arg value= "core/java/src/net/i2p/CoreVersion.java" />
<arg value= "router/java/src/net/i2p/router/RouterVersion.java" />
</exec>
<echo message= "Everything is checked in, right?" />
<input message= "Enter new version number:" addproperty= "release.number" />
<fail message= "You must enter a version number." >
<condition >
<equals arg1= "${release.number}" arg2= "" />
</condition>
</fail>
<copy file= "i2pupdate.zip" tofile= "i2pupdate_${release.number}.zip" />
<copy file= "i2pinstall.exe" tofile= "i2pinstall_${release.number}.exe" />
<delete file= "i2pupdate.sud" failonerror= "false" />
<input message= "Enter private signing key file:" addproperty= "release.privkey" />
<fail message= "You must enter a path." >
<condition >
<equals arg1= "${release.privkey}" arg2= "" />
</condition>
</fail>
<java classname= "net.i2p.crypto.TrustedUpdate" fork= "true" failonerror= "true" >
<classpath >
<pathelement location= "build/i2p.jar" />
</classpath>
<arg value= "sign" />
<arg value= "i2pupdate.zip" />
<arg value= "i2pupdate.sud" />
<arg value= "${release.privkey}" />
<arg value= "${release.number}" />
</java>
<fail message= "i2pupdate.sud generation failed!" >
<condition >
<length file= "i2pupdate.sud" when= "lt" length= "1000000" />
</condition>
</fail>
<echo message= "Verify version and VALID signature:" />
<java classname= "net.i2p.crypto.TrustedUpdate" fork= "true" failonerror= "true" >
<classpath >
<pathelement location= "build/i2p.jar" />
</classpath>
<arg value= "verifysig" />
<arg value= "i2pupdate.sud" />
</java>
<java classname= "net.i2p.crypto.TrustedUpdate" fork= "true" failonerror= "true" >
<classpath >
<pathelement location= "build/i2p.jar" />
</classpath>
<arg value= "showversion" />
<arg value= "i2pupdate.sud" />
</java>
<!-- will this use the monotonerc file in the current workspace? -->
<echo message= "Checking out fresh copy into ../i2p-${release-number} for tarballing:" />
<exec executable= "mtn" >
<arg value= "co" />
<arg value= "-b" />
<arg value= "i2p.i2p" />
<arg value= "../i2p-${release.number}/" />
</exec>
<exec executable= "tar" >
<arg value= "cjf" />
<arg value= "i2psource_${release.number}.tar.bz2" />
<arg value= "-C" />
<arg value= ".." />
<arg value= "--exclude" />
<arg value= "i2p-${release.number}/_MTN/" />
<arg value= "i2p-${release.number}/" />
</exec>
<echo message= "Sign the files:" />
<exec executable= "gpg" >
<arg value= "-b" />
<arg value= "i2pinstall_${release.number}.exe" />
</exec>
<exec executable= "gpg" >
<arg value= "-b" />
<arg value= "i2psource_${release.number}.tar.bz2" />
</exec>
<exec executable= "gpg" >
<arg value= "-b" />
<arg value= "i2pupdate_${release.number}.zip" />
</exec>
<echo message= "File sizes:" />
<exec executable= "ls" >
<arg value= "-l" />
<arg value= "i2pinstall_${release.number}.exe" />
<arg value= "i2psource_${release.number}.tar.bz2" />
<arg value= "i2pupdate_${release.number}.zip" />
<arg value= "i2pupdate.sud" />
<arg value= "i2pinstall_${release.number}.exe.sig" />
<arg value= "i2psource_${release.number}.tar.bz2.sig" />
<arg value= "i2pupdate_${release.number}.zip.sig" />
</exec>
<echo message= "SHA256 sums:" />
<exec executable= "sha256sum" >
<arg value= "i2pinstall_${release.number}.exe" />
<arg value= "i2psource_${release.number}.tar.bz2" />
<arg value= "i2pupdate_${release.number}.zip" />
<arg value= "i2pupdate.sud" />
</exec>
<echo message= "Don't forget to mtn tag h: i2p-${release-number}" />
</target>
2004-04-08 04:41:54 +00:00
</project>