我有一个像这样的多模块 Web 应用程序项目:
家长
- 网络基础
- 授权
- 文档
- ADFS
- 测试站点
测试站点使用所有其他模块就好了。
doc结合 JavaDocs 和装载的网页信息来构建一个SiteMap。因为它正在为我的 SiteMap 生成解析 JavaDocs 它也是一个 Doclet Jar,因为 Doclet 是解析和存储站点地图信息的最简单方法。
在测试站点pom.xml 我有
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executuions>
<exceution>
<id>build-siteMap-Descriptions</id>
<phase>process-classes</phase>
<goals>
<goal>javadoc</goal>
</goals>
<configuration>
<doclet>
us.ak.state.revenue.cssd.utils.SiteMapDoclet
</doclet>
<docletPath>
\;.;${project.build.outputDirectory};
</docletPath>
<docletArtifacts>
<docletArtifact>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.2</version>
</docletArtifact>
<docletArtifact>
<groupId>us.ak.state.revenue.cssd</groupId>
<artifactId>doc</artifactId>
<version>${project.version}</version> <!-- problematic section -->
</docletArtifact>
</docletArtifacts>
<bootclasspath>
\;.;
${bootClassPath};
${env.CLASSPATH};
</bootclasspath>
<destDir>SiteMap</destDir>
<author>false</author>
<!-- don't print the packages/classes it's running on -->
<quiet>true</quiet>
<debug>true</debug> <!-- save options -->
<useStandardDocletOptions>false</useStandardDocletOptions>
<additionalparam>
-sitemap us.ak.state.revenue.cssd.webBaseTest.Pages.SiteMap
</additionalparam>
<name>SiteMapDoclet</name>
<description>Page Descriptions for SiteMap generation</description>
</configuration>
</execution>
</exectuions>
</plugin>
因此,当我运行mvn release:prepare
它时,它想解决快照依赖关系,然后它会出错:
[INFO] An error has occurred in SiteMapDoclet report generation: Unable to find artifact:groupId = 'us.ak.state.revenue.cssd'
[INFO] artifactId = 'doc'
[INFO] version = '1.5.8'
[INFO]
[INFO] Unable to download the artifact from any repository
那么在部署项目时如何正确引用我的 Doclet?