blob: 8682526d753e0d52c0bdc22209e45fb246b15690 [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, "UTF-8" );
if ( content.indexOf( "encoding=\"UTF-8\"" ) < 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;