我遇到了有关聚合javadoc目标目录的问题。
我拥有的是:
包含多个模块的maven项目。它看起来有点像here
Project
|-- directory_to_contain_docs/
|-- pom.xml
|-- Module1
| `-- pom.xml
|-- Module2
| `-- pom.xml
`-- Module3
`-- pom.xml
我无法让javadoc在名为“directory_to_contain_docs”的目录中生成文档。
这就是我的尝试:
我用“ mvn javadoc:aggregate ”调用该代。这是pom.xml的一部分:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<!-- Default configuration for all reports -->
<failOnError>false</failOnError>
<destDir>${basedir}/directory_to_contain_docs</destDir>
<!-- as there are lots of incorrectly documented sources -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
javadoc始终在 {project} / target / site / apidocs 中生成,生成创建该目录下 destDir 中给出的完整路径。我正在寻找一种方法将整个文档放在其他地方。
有机会实现吗?
谢谢, Ishiido
答案 0 :(得分:0)
不知道为什么我没有看到它...缺少的链接是
configuration/reportOutputDirectory
。
它指定生成文档的目录。它可以由destDir
进一步指定。