We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 125da01 + f7c223e commit 3f257cdCopy full SHA for 3f257cd
pom.xml
@@ -99,6 +99,29 @@
99
</plugins>
100
</pluginManagement>
101
<plugins>
102
+ <plugin>
103
+ <groupId>org.apache.maven.plugins</groupId>
104
+ <artifactId>maven-enforcer-plugin</artifactId>
105
+ <version>1.4</version>
106
+ <executions>
107
+ <execution>
108
+ <id>enforce-maven</id>
109
+ <goals>
110
+ <goal>enforce</goal>
111
+ </goals>
112
+ <configuration>
113
+ <rules>
114
+ <requireMavenVersion>
115
+ <version>[3.0,)</version>
116
+ </requireMavenVersion>
117
+ <requireJavaVersion>
118
+ <version>[1.7,)</version>
119
+ </requireJavaVersion>
120
+ </rules>
121
+ </configuration>
122
+ </execution>
123
+ </executions>
124
+ </plugin>
125
<plugin>
126
<groupId>org.codehaus.mojo</groupId>
127
<artifactId>exec-maven-plugin</artifactId>
0 commit comments