This is an automated email from the ASF dual-hosted git repository.
rmannibucau pushed a commit to branch pr-459
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git
The following commit(s) were added to refs/heads/pr-459 by this push:
new 800ac56e fix deps
800ac56e is described below
commit 800ac56ec6925bc954b13910500a0172ae4879e0
Author: Romain Manni-Bucau <[email protected]>
AuthorDate: Mon Oct 6 21:34:54 2025 +0200
fix deps
---
pom.xml | 12 +++++++++++-
.../plugins/dependency/analyze/AbstractAnalyzeMojo.java | 6 +-----
2 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index 30291e1d..2eddc41a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -155,6 +155,11 @@ under the License.
<artifactId>doxia-sink-api</artifactId>
<version>2.0.0</version>
</dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>9.8</version>
+ </dependency>
<!-- reporting -->
<dependency>
@@ -422,7 +427,12 @@ under the License.
<version>1.3.10</version>
<scope>test</scope>
</dependency>
-
+ <dependency>
+ <groupId>org.codehaus.plexus</groupId>
+ <artifactId>plexus-classworlds</artifactId>
+ <version>2.9.0</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
diff --git
a/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
b/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
index 2c39d927..fffd7181 100644
---
a/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
+++
b/src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java
@@ -124,7 +124,7 @@ public abstract class AbstractAnalyzeMojo extends
AbstractMojo {
private boolean ignoreAllNonTestScoped;
/**
- * Output the XML for the missing dependencies (used but not declared).
+ * Output the xml for the missing dependencies (used but not declared).
*
* @since 2.0-alpha-5
*/
@@ -233,10 +233,6 @@ public abstract class AbstractAnalyzeMojo extends
AbstractMojo {
* <code>org.apache.</code>, and <code>:::*-SNAPSHOT</code> matches all
snapshot artifacts.
* </p>
*
- * <p>Certain dependencies that are known to be used and loaded by
reflection
- * are always ignored. This includes {@code org.slf4j:slf4j-simple::}
- * and {@code org.glassfish:javax.json::}.</p>
- *
* @since 2.10
*/
@Parameter