|
From: <tre...@us...> - 2007-11-07 21:06:49
|
Revision: 562
http://ogoglio.svn.sourceforge.net/ogoglio/?rev=562&view=rev
Author: trevorolio
Date: 2007-11-07 13:06:54 -0800 (Wed, 07 Nov 2007)
Log Message:
-----------
Fixed the error message for the environment mojo check for the context and server xml files.
Modified Paths:
--------------
maven/trunk/dev-plugins/src/main/java/com/ogoglio/plugin/VerifyEnvironmentMojo.java
Modified: maven/trunk/dev-plugins/src/main/java/com/ogoglio/plugin/VerifyEnvironmentMojo.java
===================================================================
--- maven/trunk/dev-plugins/src/main/java/com/ogoglio/plugin/VerifyEnvironmentMojo.java 2007-11-05 22:43:38 UTC (rev 561)
+++ maven/trunk/dev-plugins/src/main/java/com/ogoglio/plugin/VerifyEnvironmentMojo.java 2007-11-07 21:06:54 UTC (rev 562)
@@ -154,7 +154,7 @@
private void fileOkForReading(File f) throws MojoExecutionException {
if ((!f.exists()) || (!f.canRead())) {
- throw new MojoExecutionException("Can't read context file:" + contextFile);
+ throw new MojoExecutionException("Can't read context file:" + f);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|