2011-08-07 00:45:14 +00:00
|
|
|
# These properties can be set to alter the build process.
|
|
|
|
#
|
|
|
|
# This file contains default values that are used by official I2P installers.
|
|
|
|
#
|
|
|
|
# End-users *should not* edit this file. If you want to change the values, make a
|
|
|
|
# copy, call it override.properties, and make the desired changes to that.
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Javadocs
|
|
|
|
# Note: Include the trailing slash! Don't surround the URL in quotes!
|
2011-12-14 00:09:15 +00:00
|
|
|
javasedocs.url=http://docs.oracle.com/javase/6/docs/api/
|
2012-12-29 13:19:09 +00:00
|
|
|
javaeedocs.url=http://docs.oracle.com/javaee/6/api/
|
2013-04-12 13:53:54 +00:00
|
|
|
jettydocs.url=http://download.eclipse.org/jetty/stable-7/apidocs/
|
2011-08-07 00:45:14 +00:00
|
|
|
jrobindocs.url=http://docs.i2p-projekt.de/jrobin/javadoc/
|
|
|
|
wrapperdocs.url=http://wrapper.tanukisoftware.com/jdoc/
|
2012-01-31 14:03:20 +00:00
|
|
|
# these are only for unit test javadocs
|
|
|
|
i2pdocs.url=http://docs.i2p-projekt.de/javadoc/
|
|
|
|
junitdocs.url=http://junit.org/apidocs/
|
2012-03-01 16:04:17 +00:00
|
|
|
# This will go in the jar manifests
|
2013-01-03 19:36:39 +00:00
|
|
|
build.built-by=unknown
|
2012-03-09 02:00:07 +00:00
|
|
|
|
2012-12-21 20:45:05 +00:00
|
|
|
# filename of the sloccount report
|
|
|
|
sloccount.report.file=sloccount.sc
|
|
|
|
|
2012-12-23 17:30:56 +00:00
|
|
|
# Uncomment the next line to prevent "ant debian" from automatically
|
|
|
|
# updating the changelog
|
|
|
|
#noAutoDebchange=true
|
|
|
|
|
2012-04-12 21:05:19 +00:00
|
|
|
# Building EXEs in x64 Linux requires that 32bit libraries are installed. In Debian,
|
|
|
|
# for example, installing the libc6-i386 package will satisfy this requirement.
|
|
|
|
|
|
|
|
# Uncomment the next line to prevent building EXEs (changing it to false will have no impact)
|
2012-03-05 15:07:04 +00:00
|
|
|
#noExe=true
|
2012-07-27 15:30:11 +00:00
|
|
|
|
2013-01-10 16:51:06 +00:00
|
|
|
# Change this to false if you don't have gettext or you want to prevent it from running during the build
|
2012-07-27 15:30:11 +00:00
|
|
|
require.gettext=true
|
|
|
|
|
2014-02-21 13:59:27 +00:00
|
|
|
# Compile for this version of Java
|
|
|
|
javac.version=1.6
|
|
|
|
|
2012-07-27 15:30:11 +00:00
|
|
|
# Additional classpath if required
|
2012-09-14 13:49:09 +00:00
|
|
|
#javac.classpath=/PATH/TO/pack200.jar
|
2012-07-27 15:30:11 +00:00
|
|
|
|
|
|
|
# Optional compiler args
|
|
|
|
# This one keeps gcj a lot quieter
|
|
|
|
#javac.compilerargs=-warn:-unchecked,raw,unused,serial
|
2012-12-14 22:33:37 +00:00
|
|
|
|
2014-07-31 14:42:51 +00:00
|
|
|
#
|
|
|
|
# Note to packagers, embedders, distributors:
|
|
|
|
#
|
|
|
|
# Strictly speaking, you must either use the compiler for the minimum Java version you are
|
|
|
|
# targeting (default 1.6, see above), or specify a bootclasspath, which means you need
|
|
|
|
# the JRE for the target version installed as well.
|
|
|
|
#
|
|
|
|
# However, in practice, you can compile with 1.7 and target 1.6 without specifying a bootclasspath,
|
|
|
|
# and it all works fine.
|
|
|
|
#
|
|
|
|
# But you cannot compile with 1.8 and target 1.6 or 1.7 without bootclasspath,
|
|
|
|
# or your users will get runtime errors.
|
|
|
|
# Below is an example of a bootclasspath that works on Ubuntu.
|
|
|
|
#
|
|
|
|
# For more info:
|
|
|
|
# http://zzz.i2p/topics/1668
|
|
|
|
# https://gist.github.com/AlainODea/1375759b8720a3f9f094
|
|
|
|
#
|
|
|
|
#javac.compilerargs=-bootclasspath /usr/lib/jvm/java-6-openjdk-amd64/jre/lib/rt.jar:/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/jce.jar
|
|
|
|
|
|
|
|
|
2013-01-03 11:53:08 +00:00
|
|
|
### UnitTests ##
|
2012-12-14 22:33:37 +00:00
|
|
|
# Location of the libraries required for the ScalaTest tests.
|
|
|
|
# Define this in override.properties or pass in on the command line.
|
|
|
|
# The directory must contain the following library names:
|
|
|
|
# mockito-all.jar
|
|
|
|
# scala-compiler.jar
|
|
|
|
# scala-library.jar
|
|
|
|
# scalatest.jar
|
|
|
|
#scalatest.libs=/PATH/TO/SCALATEST/lib
|
|
|
|
|
2013-01-03 11:53:08 +00:00
|
|
|
# Location of the junit libraries
|
|
|
|
# Defaults to the ant library path if not set.
|
2013-01-03 19:36:39 +00:00
|
|
|
# If set, this must point to a directory that contains the file junit4.jar
|
2013-01-03 11:53:08 +00:00
|
|
|
#junit.home=
|
|
|
|
|
|
|
|
# Location of the hamcrest libraries
|
|
|
|
# Defaults to the ant library path if not set
|
|
|
|
# If set, this must point to a directory containing the files
|
|
|
|
# hamcrest-core.jar, hamcrest-library.jar, and hamcrest-integration.jar
|
|
|
|
#hamcrest.home=
|
|
|
|
|
2012-12-14 22:33:37 +00:00
|
|
|
# Optional properties used in tests to enable additional tools.
|
|
|
|
#with.cobertura=/PATH/TO/cobertura.jar
|
|
|
|
#with.clover=/PATH/TO/clover.jar
|