File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 112112 <maven-checkstyle-plugin .version>3.2.1</maven-checkstyle-plugin .version>
113113 <maven-compiler-plugin .version>3.11.0</maven-compiler-plugin .version>
114114 <maven-deploy-plugin .version>3.1.0</maven-deploy-plugin .version>
115+ <maven-enforcer-plugin .version>3.2.1</maven-enforcer-plugin .version>
115116 <maven-failsafe-plugin .version>3.0.0-M9</maven-failsafe-plugin .version>
116117 <maven-install-plugin .version>3.1.0</maven-install-plugin .version>
117118 <maven-jar-plugin .version>3.3.0</maven-jar-plugin .version>
574575
575576 <plugins >
576577
578+ <plugin >
579+ <groupId >org.apache.maven.plugins</groupId >
580+ <artifactId >maven-enforcer-plugin</artifactId >
581+ <version >${maven-enforcer-plugin.version} </version >
582+ <configuration >
583+ <rules >
584+ <requireMavenVersion >
585+ <!--
586+ Expect this Maven version or crash the build. This ensures people are using
587+ ./mvnw or .\mvnw.cmd to build things.
588+ -->
589+ <version >3.9.0</version >
590+ </requireMavenVersion >
591+ </rules >
592+ </configuration >
593+ </plugin >
594+
577595 <plugin >
578596 <!-- Enforces our license header and allows adding it automatically to code. -->
579597 <groupId >com.mycila</groupId >
You can’t perform that action at this time.
0 commit comments