Repository: commons-release-plugin Updated Branches: refs/heads/master 7a3be9d5e -> 5db46c8c7
Make this TLA upper-case in the prop file and error message. 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/5db46c8c Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/5db46c8c Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/5db46c8c Branch: refs/heads/master Commit: 5db46c8c73c1331465f512dbc59ca0677759b6c5 Parents: 7a3be9d Author: Gary Gregory <garydgreg...@gmail.com> Authored: Wed May 16 15:30:25 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Wed May 16 15:30:25 2018 -0600 ---------------------------------------------------------------------- .../release/plugin/mojos/CommonsDistributionDetachmentMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/5db46c8c/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 6892386..c6d8fef 100644 --- a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java +++ b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionDetachmentMojo.java @@ -178,9 +178,9 @@ public class CommonsDistributionDetachmentMojo extends AbstractMojo { private void logAllArtifactsInPropertiesFile() throws MojoExecutionException { File sha1PropertiesFile = new File(workingDirectory, "sha1.properties"); try (FileOutputStream fileWriter = new FileOutputStream(sha1PropertiesFile)) { - artifactSha1s.store(fileWriter, "release sha1s"); + artifactSha1s.store(fileWriter, "Release SHA1s"); } catch (IOException e) { - throw new MojoExecutionException("Failure to write sha1's", e); + throw new MojoExecutionException("Failure to write SHA1's", e); } }