integration test fix, mmld temporarily out of order

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-04-15 05:00:05 +00:00
parent b2e4433615
commit 1166e16562
2 changed files with 8 additions and 1 deletions

View File

@ -11,7 +11,7 @@ it0010
it0011
it0012
it0013
it0015
#it0015
it0016
it0017
it0018

View File

@ -46,6 +46,13 @@ public class CoreIt0013Mojo
{
String outputDirectory = (String) request.getParameter( "outputDirectory" );
if ( outputDirectory == null || outputDirectory.length() == 0 )
{
throw new Exception( "outputDirectory must be specified" );
}
getLog().info( "outputDirectory = " + outputDirectory );
File f = new File( outputDirectory );
if ( !f.exists() )