File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
src/main/java/org/apache/maven/plugins/dependency/analyze Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments