Enabled Java 8 features.

This commit is contained in:
Ilkka Seppala 2015-04-09 22:39:36 +03:00
parent 66982375f5
commit 00e6e099a0

View File

@ -60,17 +60,17 @@
<build>
<plugins>
<!-- Tell maven to compile using Java 1.7 -->
<!-- Tell maven to compile using Java 8 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>