Skip to content

Commit 800ac56

Browse files
committed
fix deps
1 parent 36b9def commit 800ac56

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,11 @@ under the License.
155155
<artifactId>doxia-sink-api</artifactId>
156156
<version>2.0.0</version>
157157
</dependency>
158+
<dependency>
159+
<groupId>org.ow2.asm</groupId>
160+
<artifactId>asm</artifactId>
161+
<version>9.8</version>
162+
</dependency>
158163

159164
<!-- reporting -->
160165
<dependency>
@@ -422,7 +427,12 @@ under the License.
422427
<version>1.3.10</version>
423428
<scope>test</scope>
424429
</dependency>
425-
430+
<dependency>
431+
<groupId>org.codehaus.plexus</groupId>
432+
<artifactId>plexus-classworlds</artifactId>
433+
<version>2.9.0</version>
434+
<scope>test</scope>
435+
</dependency>
426436
</dependencies>
427437

428438
<build>

src/main/java/org/apache/maven/plugins/dependency/analyze/AbstractAnalyzeMojo.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public abstract class AbstractAnalyzeMojo extends AbstractMojo {
124124
private boolean ignoreAllNonTestScoped;
125125

126126
/**
127-
* Output the XML for the missing dependencies (used but not declared).
127+
* Output the xml for the missing dependencies (used but not declared).
128128
*
129129
* @since 2.0-alpha-5
130130
*/
@@ -233,10 +233,6 @@ public abstract class AbstractAnalyzeMojo extends AbstractMojo {
233233
* <code>org.apache.</code>, and <code>:::*-SNAPSHOT</code> matches all snapshot artifacts.
234234
* </p>
235235
*
236-
* <p>Certain dependencies that are known to be used and loaded by reflection
237-
* are always ignored. This includes {@code org.slf4j:slf4j-simple::}
238-
* and {@code org.glassfish:javax.json::}.</p>
239-
*
240236
* @since 2.10
241237
*/
242238
@Parameter

0 commit comments

Comments
 (0)