in src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java [461:477]
private void copyStaticResources()
{
try
{
getLog().debug( "Copying static linkcheck resources." );
for ( String resourceName : RESOURCE_NAMES )
{
URL url = this.getClass().getClassLoader().getResource( PLUGIN_RESOURCES_BASE + "/" + resourceName );
FileUtils.copyURLToFile( url, new File( getReportOutputDirectory(), resourceName ) );
}
}
catch ( IOException e )
{
getLog().error( "Unable to copy icons for linkcheck report." );
getLog().debug( e );
}
}