From bc318133a67258e58866b08eefb148fd5db00c15 Mon Sep 17 00:00:00 2001 From: John Dennis Casey Date: Thu, 10 Jul 2008 15:58:18 +0000 Subject: [PATCH] output the actual check and target values for comparison. git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@675624 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/maven/plugin/coreit/PropertyInterpolationMojo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/its/core-integration-testing-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java b/its/core-integration-testing-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java index 20e8e5966a..136b44013f 100644 --- a/its/core-integration-testing-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java +++ b/its/core-integration-testing-plugins/maven-it-plugin-project-interpolation/src/main/java/org/apache/maven/plugin/coreit/PropertyInterpolationMojo.java @@ -50,7 +50,7 @@ public void execute() if ( !value.equals( targetValue ) ) { - throw new MojoExecutionException( "Property value of 'myDirectory': " + value + " should equal project build directory: " + project.getBuild().getDirectory() + " + '/foo'" ); + throw new MojoExecutionException( "Property value of 'myDirectory': " + value + " should equal the 'foo' subpath of the project build directory: " + targetValue ); } } }