There was an error while loading. Please reload this page.
1 parent 896e49f commit 50d4988Copy full SHA for 50d4988
pom.xml
@@ -164,6 +164,28 @@
164
<groupId>org.apache.maven.plugins</groupId>
165
<artifactId>maven-compiler-plugin</artifactId>
166
</plugin>
167
+ <plugin>
168
+ <inherited>true</inherited>
169
+ <groupId>org.apache.maven.plugins</groupId>
170
+ <artifactId>maven-enforcer-plugin</artifactId>
171
+ <version>1.3</version>
172
+ <executions>
173
+ <execution>
174
+ <id>enforce-maven-3</id>
175
+ <goals>
176
+ <goal>enforce</goal>
177
+ </goals>
178
+ <configuration>
179
+ <rules>
180
+ <requireMavenVersion>
181
+ <version>3.0.2</version>
182
+ </requireMavenVersion>
183
+ </rules>
184
+ <fail>true</fail>
185
+ </configuration>
186
+ </execution>
187
+ </executions>
188
+ </plugin>
189
</plugins>
190
</build>
191
<issueManagement>
0 commit comments