我目前正在使用“发音”插件来为网站生成 API 文档。
我想将文档从 API 分离到不同的项目中,这些项目将作为持续交付的一部分一起部署到同一个 tomcat 服务器。
所以我现在需要的是修改将“知道”另一个项目并将输出部署到它的 maven 配置。
这是我现在拥有的清晰的 maven 插件配置:
<plugin> <groupId>org.codehaus.enunciate</groupId> <artifactId>maven-enunciate-plugin</artifactId> <version>1.26.2</version> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>docs</goal> </goals> <configuration> <docsDir>${project.build.directory}/docs</docsDir> <docsDir>${project.build.directory}/${warName}/docs</docsDir> <configFile>${basedir}/src/main/resources/enunciate.xml</configFile> </configuration> </execution> </executions> </plugin>
所以现在我真的不明白如何在<docsDir>