Update maven configuration to using Java 6.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 26 Nov 2009 19:57:52 +0000 (20:57 +0100)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 26 Nov 2009 19:57:52 +0000 (20:57 +0100)
.classpath
pom.xml

index b1ff7b3..1f3c1ff 100644 (file)
@@ -1,8 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
        <classpathentry kind="src" output="target/classes" path="src/main/java"/>
-       <classpathentry kind="src" path="test/main/java"/>
-       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
        <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
        <classpathentry kind="output" path="target/classes"/>
 </classpath>
diff --git a/pom.xml b/pom.xml
index f820b6f..84ac23a 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -41,8 +41,8 @@
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <configuration>
-                                       <source>1.5</source>
-                                       <target>1.5</target>
+                                       <source>1.6</source>
+                                       <target>1.6</target>
                                </configuration>
                        </plugin>
                        <plugin>