We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07b2e22 commit b6460beCopy full SHA for b6460be
pom.xml
@@ -86,6 +86,26 @@
86
87
<build>
88
<plugins>
89
+ <plugin>
90
+ <groupId>org.apache.maven.plugins</groupId>
91
+ <artifactId>maven-enforcer-plugin</artifactId>
92
+ <version>3.0.0-M2</version>
93
+ <executions>
94
+ <execution>
95
+ <id>validate</id>
96
+ <goals>
97
+ <goal>enforce</goal>
98
+ </goals>
99
+ <configuration>
100
+ <rules>
101
+ <requireJavaVersion>
102
+ <version>[1.7.0-0,1.9.0-0)</version>
103
+ </requireJavaVersion>
104
+ </rules>
105
+ </configuration>
106
+ </execution>
107
+ </executions>
108
+ </plugin>
109
<plugin>
110
<groupId>org.apache.maven.plugins</groupId>
111
<artifactId>maven-source-plugin</artifactId>
0 commit comments