Commit 26d900f3 authored by Phillip Webb's avatar Phillip Webb

Revert "Allow maven build with JDK 1.8"

Revert commit fd15b62a to
ensure that we don't accidentally use Java 8 features.
parent 18a666ca
...@@ -263,7 +263,7 @@ ...@@ -263,7 +263,7 @@
[1.3.1,) [1.3.1,)
</versionRange> </versionRange>
<goals> <goals>
<goal>enforce</goal> <goal>enforce-once</goal>
</goals> </goals>
</pluginExecutionFilter> </pluginExecutionFilter>
<action> <action>
...@@ -325,12 +325,12 @@ ...@@ -325,12 +325,12 @@
<execution> <execution>
<id>enforce-rules</id> <id>enforce-rules</id>
<goals> <goals>
<goal>enforce</goal> <goal>enforce-once</goal>
</goals> </goals>
<configuration> <configuration>
<rules> <rules>
<requireJavaVersion> <requireJavaVersion>
<version>(1.7,1.8]</version> <version>(1.7,1.8)</version>
</requireJavaVersion> </requireJavaVersion>
</rules> </rules>
</configuration> </configuration>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment