temporarily enforce jdk 1.6 in the maven build to provide a non-confusing compile error message if someone accidentally tries to build on JDK 7 which does not yet work (see KT-2988)

This commit is contained in:
James Strachan
2012-10-24 09:23:32 +01:00
parent ef0c8ab162
commit 3043577949
+25
View File
@@ -124,6 +124,31 @@
</systemProperties>
</configuration>
</plugin>
<!--
the build doesn't work in JDK 7 yet so lets enforce 1.6 with meaningful errors to avoid confusion
see: http://youtrack.jetbrains.com/issue/KT-2988 for more details
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>enforce-versions</id>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.6,1.7)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>