diff options
author | Sven Gothel <[email protected]> | 2013-09-12 01:58:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-09-12 01:58:18 +0200 |
commit | aef08ebd882f74baf666c373c34d7a11ebf5fa89 (patch) | |
tree | db6aec9601c02fabd537e9f5252ae80a2bc19b50 | |
parent | 2cdd1070056c0f7e9dc7f40de19c2bfdfef0432a (diff) |
Add Ant to Eclipse project classpath; Compile sourc/target java level 1.6
-rw-r--r-- | .classpath | 3 | ||||
-rw-r--r-- | build.xml | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" output="classes" path="java"/> - <classpathentry kind="var" path="JRE_LIB" rootpath="JRE_SRCROOT" sourcepath="JRE_SRC"/> + <classpathentry kind="var" path="JRE_LIB" sourcepath="JRE_SRC"/> + <classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Ant"/> <classpathentry kind="output" path="bin"/> </classpath> @@ -34,8 +34,8 @@ (zipped source doesn't contain xdocs proposal) --> <property name="ant-src.dir" location="/ant-src/ant"/> <property name="xdocs.dir" location="${ant-src.dir}/proposal/xdocs"/> - <property name="javac.source" value="1.3"/> - <property name="javac.target" value="1.1"/> + <property name="javac.source" value="1.6"/> + <property name="javac.target" value="1.6"/> <!-- =================================================================== |