summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorchibash <chiba@javassist.org>2014-06-13 16:24:58 +0900
committerchibash <chiba@javassist.org>2014-06-13 16:24:58 +0900
commitd021437f42d1ff2841564eca1f4bd685b704c81a (patch)
tree2dac1bc62148f07d2a2fbb79027e7c00efe024b8 /build.xml
parente68755e2130278dc10aabf16e866e2fcf3a741fc (diff)
downloadjavassist-d021437f42d1ff2841564eca1f4bd685b704c81a.tar.gz
javassist-d021437f42d1ff2841564eca1f4bd685b704c81a.zip
changed the compiler version to Java 6
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 894256d7..5884e19f 100644
--- a/build.xml
+++ b/build.xml
@@ -69,13 +69,13 @@
</javac>
</target>
- <target name="compile14" depends="prepare">
+ <target name="compile16" depends="prepare">
<javac srcdir="${src.dir}"
destdir="${build.classes.dir}"
debug="on"
deprecation="on"
- source="1.4"
- target="1.4"
+ source="1.6"
+ target="1.6"
optimize="off"
includes="**">
<classpath refid="classpath"/>
@@ -154,7 +154,7 @@
to ${build.classes.dir}.</echo>
</target>
- <target name="jar" depends="compile14">
+ <target name="jar" depends="compile16">
<jar jarfile="${target.jar}" update="true" manifest="${src.dir}/META-INF/MANIFEST.MF">
<fileset dir="${build.classes.dir}">
<include name="**/*.class"/>