summaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java')
-rw-r--r--src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java b/src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java
index 549be88..9fd2695 100644
--- a/src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java
+++ b/src/main/java/org/apache/maven/plugin/nar/NarTestMojo.java
@@ -75,7 +75,7 @@ public class NarTestMojo
{
String name = getTestTargetDirectory().getPath() + "/bin/" + getAOL() + "/" + test.getName();
if (!new File(name).exists()) {
- getLog().warn( "Skipping test "+name );
+ getLog().warn( "Skipping non-existing test "+name );
return;
}
getLog().info( "Running test " + name );
@@ -106,7 +106,7 @@ public class NarTestMojo
getMavenProject().getVersion(), getAOL().toString() ),
project.getArtifactId() );
if (!executable.exists()) {
- getLog().warn( "Skipping executable "+executable );
+ getLog().warn( "Skipping non-existing executable "+executable );
return;
}
getLog().info( "Running executable " + executable );