mirror of https://github.com/apache/maven.git
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:
parent
b2e4433615
commit
1166e16562
|
@ -11,7 +11,7 @@ it0010
|
|||
it0011
|
||||
it0012
|
||||
it0013
|
||||
it0015
|
||||
#it0015
|
||||
it0016
|
||||
it0017
|
||||
it0018
|
||||
|
|
|
@ -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() )
|
||||
|
|
Loading…
Reference in New Issue