When using Maven, compile using Java 1.7, not 1.6

We already switched to using Java 1.7 in the Eclipse settings.  This
applies the corresponding change to Maven-managed builds.
This commit is contained in:
Ben Liblit 2017-03-11 22:18:38 -06:00
parent 994a70500f
commit 32ab3aaa9b
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>