Force using JDK6 during release

This commit is contained in:
Simon Brandhof 2014-03-26 23:33:03 +01:00
parent c677827e40
commit fd1fc5ea0d

21
pom.xml
View File

@ -1265,6 +1265,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-java6</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<message>To release this project JDK ${jdk.min.version} is required.
</message>
<version>[1.6,1.7)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>