File tree 2 files changed +28
-2
lines changed
2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 14
14
# KIND, either express or implied. See the License for the
15
15
# specific language governing permissions and limitations
16
16
# under the License.
17
- distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5 /apache-maven-3.9.5 -bin.zip
18
- wrapperUrl =https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0 /maven-wrapper-3.2.0 .jar
17
+ distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6 /apache-maven-3.9.6 -bin.zip
18
+ wrapperUrl =https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.1 /maven-wrapper-3.3.1 .jar
Original file line number Diff line number Diff line change 49
49
<properties >
50
50
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
51
51
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
52
+ <maven .version.required>3.9.6</maven .version.required>
52
53
<maven .checkstyle.plugin.version>3.3.1</maven .checkstyle.plugin.version>
53
54
<maven .clean.plugin.version>3.3.2</maven .clean.plugin.version>
54
55
<maven .compiler.plugin.version>3.13.0</maven .compiler.plugin.version>
55
56
<maven .deploy.plugin.version>3.1.2</maven .deploy.plugin.version>
57
+ <maven .enforcer.plugin.version>3.4.1</maven .enforcer.plugin.version>
56
58
<maven .install.plugin.version>3.1.1</maven .install.plugin.version>
57
59
<maven .jar.plugin.version>3.4.1</maven .jar.plugin.version>
58
60
<maven .javadoc.plugin.version>3.6.3</maven .javadoc.plugin.version>
230
232
<artifactId >maven-deploy-plugin</artifactId >
231
233
<version >${maven.deploy.plugin.version} </version >
232
234
</plugin >
235
+ <plugin >
236
+ <groupId >org.apache.maven.plugins</groupId >
237
+ <artifactId >maven-enforcer-plugin</artifactId >
238
+ <version >${maven.enforcer.plugin.version} </version >
239
+ </plugin >
233
240
<plugin >
234
241
<groupId >org.apache.maven.plugins</groupId >
235
242
<artifactId >maven-install-plugin</artifactId >
307
314
</plugins >
308
315
</pluginManagement >
309
316
<plugins >
317
+ <plugin >
318
+ <groupId >org.apache.maven.plugins</groupId >
319
+ <artifactId >maven-enforcer-plugin</artifactId >
320
+ <executions >
321
+ <execution >
322
+ <id >enforce</id >
323
+ <goals >
324
+ <goal >enforce</goal >
325
+ </goals >
326
+ <configuration >
327
+ <rules >
328
+ <requireMavenVersion >
329
+ <version >${maven.version.required} </version >
330
+ </requireMavenVersion >
331
+ </rules >
332
+ </configuration >
333
+ </execution >
334
+ </executions >
335
+ </plugin >
310
336
<plugin >
311
337
<groupId >org.apache.maven.plugins</groupId >
312
338
<artifactId >maven-javadoc-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments