blob: 68c00f6b422d23f97442738f04f2bdd14c53b5f4 [file] [log] [blame]
import java.io.*;
import java.util.*;
import java.util.regex.*;
import org.codehaus.plexus.util.FileUtils;
try
{
File outputXML = new File( basedir, "target/changelog.xml" );
System.out.println( "Checking for existence of xml file: " + outputXML );
String content = FileUtils.fileRead( outputXML, "ISO-8859-1" );
if ( content.indexOf( "encoding=\"ISO-8859-1\"" ) < 0 )
{
throw new IOException( "Wrong encoding attribute in content." );
}
File siteDir = new File( basedir, "target/site" );
System.out.println( "Checking for existence of site directory: " + siteDir );
if ( !siteDir.isDirectory() )
{
System.out.println( "FAILED" );
return false;
}
String[] reports = { "changelog", "dev-activity", "file-activity" };
for ( String report : reports )
{
File reportFile = new File( siteDir, report + ".html" );
System.out.println( "Checking for existence of report: " + reportFile );
if ( !reportFile.isFile() )
{
System.out.println( "FAILED" );
return false;
}
}
}
catch( Throwable t )
{
t.printStackTrace();
return false;
}
return true;