Skip to content

Commit

Permalink
update to Java 8 and Ant 1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
don-vip committed May 27, 2017
1 parent b32cd41 commit e79cd54
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path=""/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="lib" path="lib/ant.jar"/>
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="lib/junit-4.12.jar"/>
Expand Down
6 changes: 3 additions & 3 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.7
org.eclipse.jdt.core.compiler.source=1.8
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<target name="javac" depends="init" description="Java source build">
<mkdir dir="classes"/>
<!-- then compile -->
<javac srcdir="." destdir="classes" debug="on" nowarn="true" source="1.7" target="1.7" includeantruntime="false">
<javac srcdir="." destdir="classes" debug="on" nowarn="true" source="1.8" target="1.8" includeantruntime="false">
<include name="**/*.java"/>
</javac>
<copy file="xmltask.properties" todir="classes"/>
Expand Down
Binary file modified lib/ant.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion xmltask.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
com.oopsconsultancy.xmltask.version = 1.17
com.oopsconsultancy.xmltask.version = 1.18

0 comments on commit e79cd54

Please sign in to comment.