Repository: commons-release-plugin Updated Branches: refs/heads/master ff15774ef -> 8c1a24834
Javadoc typos. Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/8c1a2483 Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/8c1a2483 Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/8c1a2483 Branch: refs/heads/master Commit: 8c1a2483453a22012f7f2b6ffe45efed1853d6ff Parents: ff15774 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Tue May 29 15:54:28 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Tue May 29 15:54:28 2018 -0600 ---------------------------------------------------------------------- .../CommonsDistributionDetachmentMojo.java | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/8c1a2483/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java index 376fd78..55abc09 100755 --- a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java +++ b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java @@ -40,9 +40,9 @@ import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.project.MavenProject; /** - * The purpose of this maven mojo is to detach the artifacts generated by the maven-assembly-plugin, + * The purpose of this Maven mojo is to detach the artifacts generated by the maven-assembly-plugin, * which for the Apache Commons Project do not get uploaded to Nexus, and putting those artifacts - * in the dev distribution location for apache projects. + * in the dev distribution location for Apache projects. * * @author chtompki * @since 1.0 @@ -54,7 +54,7 @@ import org.apache.maven.project.MavenProject; public class CommonsDistributionDetachmentMojo extends AbstractMojo { /** - * A list of "artifact types" in the maven vernacular, to + * A list of "artifact types" in the Maven vernacular, to * be detached from the deployment. For the time being we want * all artifacts generated by the maven-assembly-plugin to be detached * from the deployment, namely *-src.zip, *-src.tar.gz, *-bin.zip, @@ -71,8 +71,8 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { } /** - * This list is supposed to hold the maven references to the aformentioned artifacts so that we - * can upload them to svn after they've been detached from the maven deployment. + * This list is supposed to hold the Maven references to the aforementioned artifacts so that we + * can upload them to svn after they've been detached from the Maven deployment. */ private List<Artifact> detachedArtifacts = new ArrayList<>(); @@ -153,7 +153,7 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { /** * Takes an attached artifact and puts the signature in the map. - * @param artifact is a maven {@link Artifact} taken from the project at start time of mojo. + * @param artifact is a Maven {@link Artifact} taken from the project at start time of mojo. * @throws MojoExecutionException if an {@link IOException} occurs when getting the sha1 of the * artifact. */ @@ -181,7 +181,7 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { /** * Takes an attached artifact and puts the signature in the map. - * @param artifact is a maven {@link Artifact} taken from the project at start time of mojo. + * @param artifact is a Maven {@link Artifact} taken from the project at start time of mojo. * @throws MojoExecutionException if an {@link IOException} occurs when getting the sha1 of the * artifact. */ @@ -224,7 +224,7 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { /** * Writes to ./target/commons-release-plugin/sha256.properties the artifact sha256's. * - * @throws MojoExecutionException if we cant write the file due to an {@link IOException}. + * @throws MojoExecutionException if we can't write the file due to an {@link IOException}. */ private void logAllArtifactsInSha256PropertiesFile() throws MojoExecutionException { File propertiesFile = new File(workingDirectory, "sha256.properties"); @@ -240,7 +240,7 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { * so that the {@link CommonsDistributionStagingMojo} can find the artifacts later. * * @throws MojoExecutionException if some form of an {@link IOException} occurs, we want it - * properly wrapped so that maven can handle it. + * properly wrapped so that Maven can handle it. */ private void copyRemovedArtifactsToWorkingDirectory() throws MojoExecutionException { StringBuffer copiedArtifactAbsolutePath; @@ -262,7 +262,7 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { * the {@link CommonsDistributionStagingMojo}. * * @throws MojoExecutionException if some form of an {@link IOException} occurs, we want it - * properly wrapped so that maven can handle it. + * properly wrapped so that Maven can handle it. */ private void hashArtifacts() throws MojoExecutionException { for (Artifact artifact : detachedArtifacts) {