This is an automated email from the ASF dual-hosted git repository.
Bukama pushed a commit to branch maven-plugin-tools-3.x
in repository https://gitbox.apache.org/repos/asf/maven-plugin-tools.git
The following commit(s) were added to refs/heads/maven-plugin-tools-3.x by this
push:
new e2c2d685 Bump org.apache.maven:maven-parent from 47 to 48 (#1109)
e2c2d685 is described below
commit e2c2d685342e2e7ed38ca2990d791d22621938dd
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri May 22 19:03:14 2026 +0200
Bump org.apache.maven:maven-parent from 47 to 48 (#1109)
* Bump org.apache.maven:maven-parent from 47 to 48
Bumps
[org.apache.maven:maven-parent](https://github.com/apache/maven-parent) from 47
to 48.
- [Release notes](https://github.com/apache/maven-parent/releases)
- [Commits](https://github.com/apache/maven-parent/commits)
---
updated-dependencies:
- dependency-name: org.apache.maven:maven-parent
dependency-version: '48'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
* Spotless
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias Bünger <[email protected]>
---
.../extractor/annotations/scanner/visitors/MojoClassVisitor.java | 5 +++--
pom.xml | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git
a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/scanner/visitors/MojoClassVisitor.java
b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/scanner/visitors/MojoClassVisitor.java
index ea0b2c18..7b6150c6 100644
---
a/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/scanner/visitors/MojoClassVisitor.java
+++
b/maven-plugin-tools-annotations/src/main/java/org/apache/maven/tools/plugin/extractor/annotations/scanner/visitors/MojoClassVisitor.java
@@ -105,8 +105,9 @@ public class MojoClassVisitor extends ClassVisitor {
public List<MojoParameterVisitor> findParameterVisitors(Set<String>
annotationClassNames) {
return Stream.concat(
findFieldWithAnnotation(annotationClassNames).stream(),
- methodVisitors.stream().filter(method ->
method.getAnnotationVisitorMap().keySet().stream()
- .anyMatch(annotationClassNames::contains)))
+ methodVisitors.stream()
+ .filter(method ->
method.getAnnotationVisitorMap().keySet().stream()
+
.anyMatch(annotationClassNames::contains)))
.collect(Collectors.toList());
}
diff --git a/pom.xml b/pom.xml
index 05b67a05..b0a6a178 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.maven</groupId>
<artifactId>maven-parent</artifactId>
- <version>47</version>
+ <version>48</version>
<relativePath />
</parent>