File index = new File( basedir, "target/site/index.html" ) int inceptionYear = 2002 int currentYear = Calendar.getInstance().get(Calendar.YEAR) assert index.exists() assert 1 == index.getText().count( """\

Copyright © ${inceptionYear}–${currentYear} The Apache Software Foundation. All rights reserved.

""".replace( "\n", System.getProperty( "line.separator" ) ) )