我正在使用名为maven-enunciate-plugin的插件生成 rest api 的(非 javadoc)文档。现在我想将它上传到我的 javadoc 存储库。我正在为此使用wagon-maven-plugin。
问题是,我不知道如何告诉 wagon 插件使用该站点的 settings.xml 中的用户名/密码。如果您使用maven-site-plugin,它似乎知道如何通过定义distributionManagement
标签来做到这一点,但我没有使用 maven-site-plugin 插件,因为我正在生成没有它的文档。
这是我的 pom 来展示我尝试过的内容:
<profile>
<id>generate-rest-doc</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.enunciate</groupId>
<artifactId>maven-enunciate-plugin</artifactId>
<version>1.27</version>
<executions>
<execution>
<goals>
<goal>docs</goal>
</goals>
<configuration>
<docsDir>${project.build.directory}/docs</docsDir>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version>
<executions>
<execution>
<id>upload-javadoc</id>
<phase>package</phase>
<goals>
<goal>upload</goal>
</goals>
<configuration>
<fromDir>${project.build.directory}/docs</fromDir>
<includes>*</includes>
<url>scp://MY-REPO/var/www/html/projects/rest-war</url>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>javadoc</id>
<url>scp://MY-REPO/var/www/html/projects/-rest-war</url>
</site>
</distributionManagement>
</profile>
....
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
</build>