blob: e25c384846bef36e2cbc2d0dedccd2197b7992f2 [file] [log] [blame]
import java.io.*;
import java.util.*;
String[] paths =
{
"org/apache/maven/its/deploy/erj/test/maven-metadata.xml",
"org/apache/maven/its/deploy/erj/test/1.0/test-1.0.pom",
"org/apache/maven/its/deploy/erj/test/1.0/test-1.0.jar",
};
for ( String path : paths )
{
File file = new File( new File( basedir, "target/repo" ), path );
System.out.println( "Checking for existence of " + file );
if ( !file.isFile() )
{
throw new FileNotFoundException( "Missing: " + file.getAbsolutePath() );
}
}
return true;