pom.xml で changelog プラグインを設定したい...
しかし、reportSets セクションがあるので、どこにプラグインを配置する必要があるのだろうか?
おそらく、scm プラグインの構成部分 (reportPlugins、...)
プラグインは、pom.xml のレポート セクションに入ります。
ドキュメントの例は、reportSets の設定方法を示しています: https://maven.apache.org/plugins/maven-changelog-plugin/examples/selecting-reports.html
で構成されているビルド プラグインとは異なり、レポート プラグインは次のようにルート要素の直下<build>
の要素内にネストされます。<reporting>
<project>
<project>
<reporting>
<plugins>
<!-- one or more reporting plugins go here -->
</plugins>
<reporting>
</project>