@@ -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,17 +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>
231231 *
232232 * @since 2.10
233233 */
234- @ Parameter
235- private String [] ignoredUnusedDeclaredDependencies = new String [ 0 ] ;
234+ @ Parameter ( defaultValue = "org.slf4j:slf4j-simple::" )
235+ private String [] ignoredUnusedDeclaredDependencies ;
236236
237237 /**
238- * 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.
239239 * The filter syntax is:
240240 *
241241 * <pre>
@@ -245,14 +245,14 @@ public abstract class AbstractAnalyzeMojo extends AbstractMojo {
245245 * where each pattern segment is optional and supports full and partial <code>*</code> wildcards. An empty pattern
246246 * segment is treated as an implicit wildcard. *
247247 * <p>
248- * 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
249249 * <code>org.apache.</code>, and <code>:::*-SNAPSHOT</code> will match all snapshot artifacts.
250250 * </p>
251251 *
252252 * @since 3.3.0
253253 */
254- @ Parameter
255- private String [] ignoredNonTestScopedDependencies = new String [ 0 ] ;
254+ @ Parameter ( defaultValue = "org.slf4j:slf4j-simple::" )
255+ private String [] ignoredNonTestScopedDependencies ;
256256
257257 /**
258258 * List of project packaging that will be ignored.
0 commit comments