【发布时间】:2015-04-23 19:28:37
【问题描述】:
版本:Apache Maven 3.0.5
我通过 maven 站点插件和命令 mvn site 成功生成了 changelog.xml。 pom.xml的站点插件内容:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0-beta-2</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.3</version>
</plugin>
</reportPlugins>
</configuration>
</plugin>
现在我也需要一个 changelog.html,我找不到任何关于如何配置我的 pom.xml 以生成 changlog 的 html 版本的信息。
【问题讨论】:
-
另一种方法是使用这个插件并添加几个执行:github.com/tomasbjerre/git-changelog-maven-plugin
标签: maven-3 file-type changelog