forked from I2P_Developers/i2p.i2p
move default properties from build.xml to build.properties
This commit is contained in:
@@ -24,3 +24,14 @@ build.built-by=unknown
|
|||||||
|
|
||||||
# Uncomment the next line to prevent building EXEs (changing it to false will have no impact)
|
# Uncomment the next line to prevent building EXEs (changing it to false will have no impact)
|
||||||
#noExe=true
|
#noExe=true
|
||||||
|
|
||||||
|
# Change this to false if you don't have gettext
|
||||||
|
# Note that this does not prevent gettext from running if installed; to be fixed
|
||||||
|
require.gettext=true
|
||||||
|
|
||||||
|
# Additional classpath if required
|
||||||
|
#javac.classpathe=/PATH/TO/pack200.jar
|
||||||
|
|
||||||
|
# Optional compiler args
|
||||||
|
# This one keeps gcj a lot quieter
|
||||||
|
#javac.compilerargs=-warn:-unchecked,raw,unused,serial
|
||||||
|
18
build.xml
18
build.xml
@@ -1,21 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
<project basedir="." default="all" name="i2p">
|
<project basedir="." default="all" name="i2p">
|
||||||
|
|
||||||
<!-- Things you might want to change -->
|
<!-- Include property files so that values can be easily overridden.
|
||||||
<!-- This keeps gcj a lot quieter -->
|
Users should create an override.properties file to make changes.
|
||||||
<!--
|
-->
|
||||||
<property name="javac.compilerargs" value="-warn:-unchecked,raw,unused,serial" />
|
|
||||||
-->
|
|
||||||
<!-- Additional classpath. No longer required; we find pack200 classes at runtime.
|
|
||||||
See core/java/src/net/i2p/util/FileUtil.java for more info.
|
|
||||||
-->
|
|
||||||
<!--
|
|
||||||
<property name="javac.classpath" value="/PATH/TO/pack200.jar" />
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- change this to false if you don't have gettext -->
|
|
||||||
<property name="require.gettext" value="true" />
|
|
||||||
<!-- Include property files so that values can be easily overridden. Currently just useful for javadoc hosters -->
|
|
||||||
<property file="override.properties"/>
|
<property file="override.properties"/>
|
||||||
<property file="build.properties"/>
|
<property file="build.properties"/>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user