Author: olamy Date: Mon Aug 1 09:17:40 2011 New Revision: 1152711 URL: http://svn.apache.org/viewvc?rev=1152711&view=rev Log: really display absolutePath
Modified: maven/shared/trunk/maven-verifier/src/main/java/org/apache/maven/it/Verifier.java Modified: maven/shared/trunk/maven-verifier/src/main/java/org/apache/maven/it/Verifier.java URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-verifier/src/main/java/org/apache/maven/it/Verifier.java?rev=1152711&r1=1152710&r2=1152711&view=diff ============================================================================== --- maven/shared/trunk/maven-verifier/src/main/java/org/apache/maven/it/Verifier.java (original) +++ maven/shared/trunk/maven-verifier/src/main/java/org/apache/maven/it/Verifier.java Mon Aug 1 09:17:40 2011 @@ -1829,11 +1829,11 @@ public class Verifier } catch ( FileNotFoundException e ) { - throw new VerificationException( "file not found path : " + file.getPath(), e ); + throw new VerificationException( "file not found path : " + file.getAbsolutePath(), e ); } catch ( IOException e ) { - throw new VerificationException( " IOException path : " + file.getPath(), e ); + throw new VerificationException( " IOException path : " + file.getAbsolutePath(), e ); } catch ( ParserConfigurationException e ) { @@ -1841,7 +1841,7 @@ public class Verifier } catch ( SAXException e ) { - throw new VerificationException( "Parsing exception for file " + file.getPath(), e ); + throw new VerificationException( "Parsing exception for file " + file.getAbsolutePath(), e ); } }