changeset 357:d2e243ddcd68 multicast

need to change JDK version from JDK6 to JDK8.
author sugi
date Tue, 13 May 2014 13:30:08 +0900
parents b1b20a39b448
children fdf17b55a668
files .classpath build.gradle
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.classpath	Mon May 12 18:29:06 2014 +0900
+++ b/.classpath	Tue May 13 13:30:08 2014 +0900
@@ -3,7 +3,7 @@
 	<classpathentry kind="src" path="src/main/java"/>
 	<classpathentry kind="src" path="src/main/resources"/>
 	<classpathentry kind="src" path="src/test/java"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
 	<classpathentry exported="true" kind="con" path="org.springsource.ide.eclipse.gradle.classpathcontainer"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>
--- a/build.gradle	Mon May 12 18:29:06 2014 +0900
+++ b/build.gradle	Tue May 13 13:30:08 2014 +0900
@@ -1,8 +1,8 @@
 apply plugin: 'java'
 apply plugin: 'eclipse'
 
-sourceCompatibility = 1.6
-targetCompatibility = 1.6
+sourceCompatibility = 1.8
+targetCompatibility = 1.8
 [compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
 version = '1.0'