Skip to content

Commit 7c4b467

Browse files
dependabot[bot]michael-o
authored andcommitted
Bump org.apache.maven.plugins:maven-plugins from 42 to 43
Bumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 42 to 43. - [Release notes](https://github.com/apache/maven-parent/releases) - [Commits](https://github.com/apache/maven-parent/commits) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-plugins dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 636442b commit 7c4b467

File tree

2 files changed

+40
-6
lines changed

2 files changed

+40
-6
lines changed

pom.xml

+13-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ under the License.
2323
<parent>
2424
<groupId>org.apache.maven.plugins</groupId>
2525
<artifactId>maven-plugins</artifactId>
26-
<version>42</version>
26+
<version>43</version>
2727
<relativePath />
2828
</parent>
2929

@@ -118,8 +118,7 @@ under the License.
118118
<resolverVersion>1.4.1</resolverVersion>
119119
<!-- https://cwiki.apache.org/confluence/x/VIHOCg#MavenEcosystemCleanup-ResolverandMaven -->
120120
<plexus-java.version>1.2.0</plexus-java.version>
121-
<version.plexus-xml>3.0.1</version.plexus-xml>
122-
<jetty.version>9.4.53.v20231009</jetty.version>
121+
<jetty.version>9.4.55.v20240627</jetty.version>
123122
<!-- for ITs -->
124123
<compilerPluginVersion>3.11.0</compilerPluginVersion>
125124
<sourcePluginVersion>3.3.0</sourcePluginVersion>
@@ -207,7 +206,7 @@ under the License.
207206
<dependency>
208207
<groupId>org.apache.maven</groupId>
209208
<artifactId>maven-archiver</artifactId>
210-
<version>3.6.1</version>
209+
<version>3.6.2</version>
211210
</dependency>
212211
<dependency>
213212
<groupId>org.apache.maven.shared</groupId>
@@ -303,13 +302,14 @@ under the License.
303302
<dependency>
304303
<groupId>org.codehaus.plexus</groupId>
305304
<artifactId>plexus-archiver</artifactId>
306-
<version>4.9.1</version>
305+
<version>4.10.0</version>
307306
</dependency>
307+
<!-- MNG-6607: needs to be overriden for commons-compress otherwise it will appear earlier in the tree -->
308308
<dependency>
309309
<groupId>commons-io</groupId>
310310
<artifactId>commons-io</artifactId>
311311
<version>2.16.1</version>
312-
<scope>test</scope>
312+
<scope>runtime</scope>
313313
</dependency>
314314
<dependency>
315315
<groupId>org.codehaus.plexus</groupId>
@@ -436,6 +436,13 @@ under the License.
436436
</excludes>
437437
</configuration>
438438
</plugin>
439+
<plugin>
440+
<groupId>org.apache.maven.plugins</groupId>
441+
<artifactId>maven-checkstyle-plugin</artifactId>
442+
<configuration>
443+
<suppressionsLocation>src/config/checkstyle-suppressions.xml</suppressionsLocation>
444+
</configuration>
445+
</plugin>
439446
<plugin>
440447
<groupId>org.apache.maven.plugins</groupId>
441448
<artifactId>maven-javadoc-plugin</artifactId>
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Licensed to the Apache Software Foundation (ASF) under one
4+
or more contributor license agreements. See the NOTICE file
5+
distributed with this work for additional information
6+
regarding copyright ownership. The ASF licenses this file
7+
to you under the Apache License, Version 2.0 (the
8+
"License"); you may not use this file except in compliance
9+
with the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing,
14+
software distributed under the License is distributed on an
15+
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
KIND, either express or implied. See the License for the
17+
specific language governing permissions and limitations
18+
under the License.
19+
-->
20+
<!DOCTYPE suppressions PUBLIC
21+
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN"
22+
"https://checkstyle.org/dtds/suppressions_1_2.dtd">
23+
<suppressions>
24+
<suppress checks="FileLengthCheck" files="AbstractFixJavadocMojo.java|AbstractJavadocMojo.java" />
25+
<suppress checks="MethodLengthCheck" files="AbstractJavadocMojo.java" />
26+
<suppress checks="ParameterNumberCheck" files="JavadocUtil.java" />
27+
</suppressions>

0 commit comments

Comments
 (0)