Skip to content

Commit

Permalink
clean up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeswenson committed Jul 8, 2016
1 parent 6be9a15 commit c054dc9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/io/paradoxical/ResolvePomMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,11 @@ public class ResolvePomMojo extends AbstractMojo {
public void execute() throws MojoExecutionException {

if(resolvedPomFile.equals(pomFile)) {
getLog().warn("Input pom file is the same as the output pom... skipping");
getLog().info(String.format(
"Input pom file %s is the same as the output pom %s, " +
"this happens for multiple runs in the same build, and is probably safe to ignore",
pomFile,
resolvedPomFile));
return;
}

Expand Down

0 comments on commit c054dc9

Please sign in to comment.