diff options
author | Adam Vandenberg <flangy@gmail.com> | 2014-03-05 14:40:52 -0800 |
---|---|---|
committer | broneill <bronee@gmail.com> | 2014-03-06 07:17:23 -0800 |
commit | 72df69d2aa512e5a6168df119aecdafd07a251c7 (patch) | |
tree | 22cf2fa0d5c5e2d6cbeded56e5001ac98f11fd97 | |
parent | 623ffa8d9336817fc20cd913b10ce7b11c07ed6c (diff) |
Target Java 1.7
-rw-r--r-- | pom.xml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -195,9 +195,10 @@ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>1.7</source>
+ <target>1.7</target>
</configuration>
</plugin>
</plugins>
|