blob: 709b6f9790307d755b9153dbcaba24074e924f33 [file] [log] [blame]
import java.io.*;
import java.util.*;
String[] paths =
{
"org/apache/maven/its/deploy/tpjwop/test/maven-metadata.xml",
"org/apache/maven/its/deploy/tpjwop/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() );
}
}
String[] missing =
{
"org/apache/maven/its/deploy/tpjwop/test/1.0/test-1.0.pom",
};
for ( String path : missing )
{
File file = new File( new File( basedir, "target/repo" ), path );
System.out.println( "Checking for absence of " + file );
if ( file.exists() )
{
throw new FileNotFoundException( "Existent: " + file.getAbsolutePath() );
}
}
return true;