Repository: commons-release-plugin Updated Branches: refs/heads/master 7a90d9875 -> ab1397a50
No need to split up string. 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/ab1397a5 Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/ab1397a5 Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/ab1397a5 Branch: refs/heads/master Commit: ab1397a500a21412f18d9da43c37646392158d3f Parents: 7a90d98 Author: Gary Gregory <garydgreg...@gmail.com> Authored: Wed May 30 11:23:19 2018 -0600 Committer: Gary Gregory <garydgreg...@gmail.com> Committed: Wed May 30 11:23:19 2018 -0600 ---------------------------------------------------------------------- .../release/plugin/mojos/CommonsDistributionStagingMojo.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/ab1397a5/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java index 953c3fc..34dc60a 100755 --- a/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java +++ b/src/main/java/org/apache/commons/release/plugin/mojos/CommonsDistributionStagingMojo.java @@ -264,8 +264,7 @@ public class CommonsDistributionStagingMojo extends AbstractMojo { SharedFunctions.copyFile(getLog(), file, copy); filesForMavenScmFileSet.add(copy); } else if (StringUtils.containsAny(file.getName(), "scm", "sha1.properties", "sha256.properties")) { - getLog().debug("Not copying scm directory over " - + "to the scm directory because it is the scm directory."); + getLog().debug("Not copying scm directory over to the scm directory because it is the scm directory."); //do nothing because we are copying into scm } else { copy = new File(distCheckoutDirectory.getAbsolutePath(), file.getName());