aboutsummaryrefslogtreecommitdiffstats
path: root/coreAPI/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-11-22 06:39:20 +0100
committerSven Gothel <[email protected]>2012-11-22 06:39:20 +0100
commit49416164a4729b1b7e234841ba9be48b9aa90830 (patch)
tree3ca433f39dd4886de493ccd7046d83809540c980 /coreAPI/build.xml
parentd0737cc4a34a41ad9bdac7de379250cacbf55a1d (diff)
parent5c894f5055dfdbf571afee3057e46b9912aedb9b (diff)
Merge remote-tracking branch 'conzar/detect'HEADmaster
Diffstat (limited to 'coreAPI/build.xml')
-rw-r--r--coreAPI/build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreAPI/build.xml b/coreAPI/build.xml
index f585b00..56b531d 100644
--- a/coreAPI/build.xml
+++ b/coreAPI/build.xml
@@ -10,7 +10,7 @@
</target>
<target name="compile" depends="init">
- <javac srcdir="src/java" destdir="classes" debug="true" deprecation="true" source="1.4" target="1.4">
+ <javac srcdir="src/java" destdir="classes" debug="true" deprecation="true" source="1.5" target="1.5">
<include name="net/**"/>
<exclude name="**/Version.java"/>
<!-- To add something to the classpath: -->
@@ -26,7 +26,7 @@
<filter token="API_VERSION" value="${api.version}"/>
</filterset>
</copy>
- <javac srcdir="build/src/java" destdir="classes" debug="true" deprecation="true" source="1.4" target="1.4">
+ <javac srcdir="build/src/java" destdir="classes" debug="true" deprecation="true" source="1.5" target="1.5">
<include name="net/**" />
</javac>
<echo message="Build version class for ${api.version} build ${build.number}"/>
@@ -44,7 +44,7 @@
<target name="javadoc" depends="init" description="Javadoc for my API.">
<javadoc packagenames="net.java.games.input.*"
destdir="apidocs"
- additionalparam="-source 1.4"
+ additionalparam="-source 1.5"
excludepackagenames="net.java.games.input.example.*,net.java.games.input.test.*">
<sourcepath>
<pathelement location="src/java"/>