我有多模块项目
Proj
+ModuleA
src
main
java
overview.html
pom.xml
+ModuleB
pom.xml
pom.xml
我试图为这些模块生成 javadoc 。 我想在概览摘要. html 中添加概览.html 。 在模块A/ src/ main 下, 我给地方概览.html, 但它没有更新概览摘要页面 。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<stylesheetfile>javadoc.css</stylesheetfile>
<overview>${basedir}moduleAsrcmainoverview.html</overview>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<show>private</show>
</configuration>
</execution>
</executions>
</plugin>
我查看了文件,我看一切都很好。我的路径有问题吗?