Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
Needs to build with 1.7 because of some Java7 utils, but source/targe…
Browse files Browse the repository at this point in the history
…t needs to be 1.6. Maybe that was implicit in

the existing configuration, now it's explicit.
  • Loading branch information
Jason van Zyl committed Dec 20, 2013
1 parent 18bd77d commit 5d46979
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,6 @@ limitations under the License.
</systemProperties>
</configuration>
</plugin>
<!--
This should not be Java7 while Maven still officially supports 1.6
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand All @@ -93,7 +89,14 @@ limitations under the License.
</execution>
</executions>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5d46979

Please sign in to comment.