Skip to content

Commit 91df9b1

Browse files
author
Federico Fissore
committed
Switching to Java 8
1 parent 9ea3de4 commit 91df9b1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: app/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<echo message="override ${env.JAVA_HOME}/lib/tools.jar" />
7474
<fail />
7575
-->
76-
<javac source="1.6" target="1.6"
76+
<javac source="1.8" target="1.8"
7777
srcdir="src"
7878
destdir="bin"
7979
encoding="UTF-8"
@@ -85,7 +85,7 @@
8585
<target name="test" depends="compile" description="Runs the test">
8686
<mkdir dir="test-bin"/>
8787

88-
<javac source="1.6" target="1.6"
88+
<javac source="1.8" target="1.8"
8989
srcdir="test"
9090
destdir="test-bin"
9191
encoding="UTF-8"

Diff for: arduino-core/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
<property environment="env" />
3232
<property name="java_home" value="${env.JAVA_HOME}" />
3333

34-
<javac source="1.6"
35-
target="1.6"
34+
<javac source="1.8"
35+
target="1.8"
3636
encoding="UTF-8"
3737
includeAntRuntime="false"
3838
srcdir="src"

0 commit comments

Comments
 (0)