@@ -216,7 +216,7 @@ public abstract class AbstractAnalyzeMojo extends AbstractMojo {
216216 private String [] ignoredUsedUndeclaredDependencies = new String [0 ];
217217
218218 /**
219- * List of dependencies that will be ignored if they are declared but unused. The filter syntax is:
219+ * List of dependencies that are ignored if they are declared but unused. The filter syntax is:
220220 *
221221 * <pre>
222222 * [groupId]:[artifactId]:[type]:[version]
@@ -225,21 +225,17 @@ public abstract class AbstractAnalyzeMojo extends AbstractMojo {
225225 * where each pattern segment is optional and supports full and partial <code>*</code> wildcards. An empty pattern
226226 * segment is treated as an implicit wildcard. *
227227 * <p>
228- * For example, <code>org.apache.*</code> will match all artifacts whose group id starts with
228+ * For example, <code>org.apache.*</code> matches all artifacts whose group id starts with
229229 * <code>org.apache.</code>, and <code>:::*-SNAPSHOT</code> will match all snapshot artifacts.
230230 * </p>
231- * <p>
232- * By default, org.slf4j:slf4j-simple is ignored. Setting this property to an empty list
233- * will allow it to be detected.
234- * </p>
235231 *
236232 * @since 2.10
237233 */
238234 @ Parameter (defaultValue = "org.slf4j:slf4j-simple::" )
239235 private String [] ignoredUnusedDeclaredDependencies ;
240236
241237 /**
242- * List of dependencies that will be ignored if they are in not test scope but are only used in test classes.
238+ * List of dependencies that are ignored if they are in not test scope but are only used in test classes.
243239 * The filter syntax is:
244240 *
245241 * <pre>
@@ -249,13 +245,9 @@ public abstract class AbstractAnalyzeMojo extends AbstractMojo {
249245 * where each pattern segment is optional and supports full and partial <code>*</code> wildcards. An empty pattern
250246 * segment is treated as an implicit wildcard. *
251247 * <p>
252- * For example, <code>org.apache.*</code> will match all artifacts whose group id starts with
248+ * For example, <code>org.apache.*</code> matched all artifacts whose group id starts with
253249 * <code>org.apache.</code>, and <code>:::*-SNAPSHOT</code> will match all snapshot artifacts.
254250 * </p>
255- * <p>
256- * By default, org.slf4j:slf4j-simple is ignored. Setting this property to an empty list
257- * will allow it to be detected.
258- * </p>
259251 *
260252 * @since 3.3.0
261253 */
0 commit comments