Forced Java target 1.6 when building CalipeL/J.
authorJan Vrany <jan.vrany@fit.cvut.cz>
Fri, 07 Nov 2014 00:10:08 +0100
changeset 257 ff92f3b70f16
parent 256 00902ea305e4
child 258 a53e87e118fc
Forced Java target 1.6 when building CalipeL/J.
java/pom.xml
--- a/java/pom.xml	Wed Nov 05 22:22:43 2014 +0100
+++ b/java/pom.xml	Fri Nov 07 00:10:08 2014 +0100
@@ -26,6 +26,16 @@
 
     <build>
         <plugins>
+<plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>3.2</version>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <configuration>
@@ -51,4 +61,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>