生成标准的 maven 插件文档
Generate standard maven plugin documentation
Maven 插件遵循文档的标准模式,例如
https://maven.apache.org/maven-release/maven-release-plugin/index.html
带有“目标”、“用法”等部分,每个目标都有专门的页面。
如何为我自己的 Maven 插件生成这样的文档?
看我自己的一个项目,我觉得就是这样:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven.plugin.plugin.version}</version>
<reportSets>
<reportSet>
<reports>
<report>report</report> <!-- generates standard Maven plugin docs -->
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
配置选项在 plugin docs.
Maven 插件遵循文档的标准模式,例如
https://maven.apache.org/maven-release/maven-release-plugin/index.html
带有“目标”、“用法”等部分,每个目标都有专门的页面。
如何为我自己的 Maven 插件生成这样的文档?
看我自己的一个项目,我觉得就是这样:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>${maven.plugin.plugin.version}</version>
<reportSets>
<reportSet>
<reports>
<report>report</report> <!-- generates standard Maven plugin docs -->
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
配置选项在 plugin docs.