File tree Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Expand file tree Collapse file tree 1 file changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -305,10 +305,6 @@ limitations under the License.
305
305
</site >
306
306
</distributionManagement >
307
307
308
- <prerequisites >
309
- <maven >3.0</maven >
310
- </prerequisites >
311
-
312
308
<properties >
313
309
<javaVersion >5</javaVersion >
314
310
<maven .compiler.source>1.${javaVersion} </maven .compiler.source>
@@ -455,6 +451,27 @@ limitations under the License.
455
451
</plugin >
456
452
</plugins >
457
453
</pluginManagement >
454
+ <plugins >
455
+ <plugin >
456
+ <artifactId >maven-enforcer-plugin</artifactId >
457
+ <executions >
458
+ <execution >
459
+ <id >enforce-maven</id >
460
+ <goals >
461
+ <goal >enforce</goal >
462
+ </goals >
463
+ <configuration >
464
+ <rules >
465
+ <requireMavenVersion >
466
+ <version >3.0.5</version >
467
+ <message >This project requires at least Maven 3.0.5</message >
468
+ </requireMavenVersion >
469
+ </rules >
470
+ </configuration >
471
+ </execution >
472
+ </executions >
473
+ </plugin >
474
+ </plugins >
458
475
</build >
459
476
460
477
<reporting >
You can’t perform that action at this time.
0 commit comments