in src/main/java/org/apache/maven/plugin/changelog/ChangeLogReport.java [1149:1177]
protected void doGenerateReport( List<ChangeLogSet> changeLogSets, ResourceBundle bundle, Sink sink )
{
sink.head();
sink.title();
sink.text( bundle.getString( "report.changelog.header" ) );
sink.title_();
sink.head_();
sink.body();
sink.section1();
sink.sectionTitle1();
sink.text( bundle.getString( "report.changelog.mainTitle" ) );
sink.sectionTitle1_();
// Summary section
doSummarySection( changeLogSets, bundle, sink );
for ( ChangeLogSet changeLogSet : changeLogSets )
{
doChangedSet( changeLogSet, bundle, sink );
}
sink.section1_();
sink.body_();
sink.flush();
sink.close();
}