aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2014-03-26 23:33:03 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2014-03-26 23:33:03 +0100
commitfd1fc5ea0d851015dae0f3fe3baf7cbe555b998c (patch)
treef5ce1a37025ca103c8689ceda6025273cb1f61d2 /pom.xml
parentc677827e4075a18b465477ac4b4c6e300f09ab60 (diff)
downloadsonarqube-fd1fc5ea0d851015dae0f3fe3baf7cbe555b998c.tar.gz
sonarqube-fd1fc5ea0d851015dae0f3fe3baf7cbe555b998c.zip
Force using JDK6 during release
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index a805e1b4217..d7a92dcf1de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>