Skip to content

Commit bda1c8e

Browse files
committed
PopulateAppMojo: change skip message back to info
I thought it would be nice not to see it in the common case where the property is unset. But there is an integration test checking for the message. And it's no more bothersome than other plugins that emit one-line statuses -- e.g.: [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ Example_PlugIn --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ Example_PlugIn --- [INFO] No tests to run.
1 parent 36cf519 commit bda1c8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scijava/maven/plugin/install/PopulateAppMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class PopulateAppMojo extends AbstractInstallMojo {
9292
@Override
9393
public void execute() throws MojoExecutionException {
9494
if (appDirectory == null) {
95-
getLog().debug("Property '" + APP_DIRECTORY_PROPERTY +
95+
getLog().info("Property '" + APP_DIRECTORY_PROPERTY +
9696
"' unset; skipping populate-app.");
9797
return;
9898
}

0 commit comments

Comments
 (0)