マルチモジュールプロジェクトがあります
Proj
+ModuleA
src
main
java
overview.html
pom.xml
+ModuleB
pom.xml
pom.xml
これらのモジュールの javadoc を生成しようとしています。overviewsummary.htmlにoverview.htmlを追加したい。moduleA/src/main の下に overview.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}\moduleA\src\main\overview.html</overview>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<show>private</show>
</configuration>
</execution>
</executions>
</plugin>
ドキュメントhttp://docs.oracle.com/javase/6/docs/tooldocs/windows/javadoc.html#overviewを見ましたが、すべて問題ないようです。私のパスに何か問題がありますか?