Skip to content

Commit 5a85c26

Browse files
committed
chore(deps): bump maven-plugin-plugin 3.7.1 -> 3.15.2
The 'report' goal was moved out of maven-plugin-plugin into a separate maven-plugin-report-plugin starting in 3.15. The project does not run 'mvn site' anywhere (no scripts/, .buildkite/, or pom.xml invocations), so the report output was already unused; drop the goal rather than add a new plugin just to host it. Resolves the build failure that blocked Dependabot PR #2313 (and the group bumps before it). Verified locally with mvn install on the mockserver-maven-plugin module — BUILD SUCCESS.
1 parent bf99fbc commit 5a85c26

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • mockserver/mockserver-maven-plugin

mockserver/mockserver-maven-plugin/pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,15 +360,17 @@
360360
<plugin>
361361
<groupId>org.apache.maven.plugins</groupId>
362362
<artifactId>maven-plugin-plugin</artifactId>
363-
<version>3.7.1</version>
363+
<version>3.15.2</version>
364364
<configuration>
365365
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
366366
</configuration>
367367
<executions>
368368
<execution>
369369
<goals>
370370
<goal>descriptor</goal>
371-
<goal>report</goal>
371+
<!-- 'report' goal moved to maven-plugin-report-plugin in
372+
maven-plugin-plugin 3.15+; the project does not run
373+
'mvn site' so the report output is unused — drop it. -->
372374
<goal>addPluginArtifactMetadata</goal>
373375
<goal>helpmojo</goal>
374376
</goals>

0 commit comments

Comments
 (0)