Skip to content

Commit caa60d1

Browse files
authored
Copy edit parameter descriptions (#1488)
1 parent ed44086 commit caa60d1

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

src/main/java/org/apache/maven/plugins/dependency/fromDependencies/AbstractDependencyFilterMojo.java

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
import org.sonatype.plexus.build.incremental.BuildContext;
5757

5858
/**
59-
* Class that encapsulates the plugin parameters, and contains methods that handle dependency filtering
59+
* Class that encapsulates the plugin parameters, and contains methods that handle dependency filtering.
6060
*
6161
* @author <a href="mailto:brianf@apache.org">Brian Fox</a>
6262
* @see org.apache.maven.plugins.dependency.AbstractDependencyMojo
@@ -96,15 +96,15 @@ public abstract class AbstractDependencyFilterMojo extends AbstractDependencyMoj
9696
protected boolean excludeTransitive;
9797

9898
/**
99-
* Comma Separated list of Types to include. Empty String indicates include everything (default).
99+
* Comma-separated list of Types to include. Empty String indicates include everything (default).
100100
*
101101
* @since 2.0
102102
*/
103103
@Parameter(property = "includeTypes", defaultValue = "")
104104
protected String includeTypes;
105105

106106
/**
107-
* Comma Separated list of Types to exclude. Empty String indicates don't exclude anything (default).
107+
* Comma-separated list of Types to exclude. Empty String indicates don't exclude anything (default).
108108
*
109109
* @since 2.0
110110
*/
@@ -150,15 +150,15 @@ public abstract class AbstractDependencyFilterMojo extends AbstractDependencyMoj
150150
protected String excludeScope;
151151

152152
/**
153-
* Comma Separated list of Classifiers to include. Empty String indicates include everything (default).
153+
* Comma-separated list of Classifiers to include. Empty string indicates include everything (default).
154154
*
155155
* @since 2.0
156156
*/
157157
@Parameter(property = "includeClassifiers", defaultValue = "")
158158
protected String includeClassifiers;
159159

160160
/**
161-
* Comma Separated list of Classifiers to exclude. Empty String indicates don't exclude anything (default).
161+
* Comma-separated list of Classifiers to exclude. Empty String indicates don't exclude anything (default).
162162
*
163163
* @since 2.0
164164
*/
@@ -182,31 +182,31 @@ public abstract class AbstractDependencyFilterMojo extends AbstractDependencyMoj
182182
protected String type;
183183

184184
/**
185-
* Comma separated list of Artifact names to exclude.
185+
* Comma-separated list of artifact IDs to exclude.
186186
*
187187
* @since 2.0
188188
*/
189189
@Parameter(property = "excludeArtifactIds", defaultValue = "")
190190
protected String excludeArtifactIds;
191191

192192
/**
193-
* Comma separated list of Artifact names to include. Empty String indicates include everything (default).
193+
* Comma-separated list of artifact IDs to include. Empty String indicates include everything (default).
194194
*
195195
* @since 2.0
196196
*/
197197
@Parameter(property = "includeArtifactIds", defaultValue = "")
198198
protected String includeArtifactIds;
199199

200200
/**
201-
* Comma separated list of GroupId Names to exclude.
201+
* Comma-separated list of group IDs to exclude.
202202
*
203203
* @since 2.0
204204
*/
205205
@Parameter(property = "excludeGroupIds", defaultValue = "")
206206
protected String excludeGroupIds;
207207

208208
/**
209-
* Comma separated list of GroupIds to include. Empty String indicates include everything (default).
209+
* Comma-separated list of group IDs to include. Empty string indicates include everything (default).
210210
*
211211
* @since 2.0
212212
*/
@@ -218,15 +218,13 @@ public abstract class AbstractDependencyFilterMojo extends AbstractDependencyMoj
218218
*
219219
* @since 2.0
220220
*/
221-
// CHECKSTYLE_OFF: LineLength
222221
@Parameter(
223222
property = "markersDirectory",
224223
defaultValue = "${project.build.directory}/dependency-maven-plugin-markers")
225-
// CHECKSTYLE_ON: LineLength
226224
protected File markersDirectory;
227225

228226
/**
229-
* Prepend the groupId during copy.
227+
* Prepend the group ID during copy.
230228
*
231229
* @since 2.2
232230
*/

0 commit comments

Comments
 (0)