我有小型 Maven 项目。我正在尝试通过 maven-site-plugin 添加生成站点,但它不起作用。当我构建这个项目时,我收到以下错误:
[错误] 无法在项目 server-wms-product 上执行目标 org.apache.maven.plugins:maven-site-plugin:3.3:site (default-site):SiteToolException:无法从存储库解析站点描述符:ArtifactResolutionException :无法找到站点描述符:无法将工件 [PARENT-PROJECT]:xml:site_en:1.0.141.1 从/到 Eclipse 传输(http://maven.eclipse.org/nexus/content/repositories/testing/):连接到http://maven.eclipse.org被拒绝
我的项目是其他项目的扩展,所以在我的 pom.xml 中设置了不是我的父项目,我不能在那里添加站点配置。
那么有没有机会在站点生成中跳过检查父项目的站点?
我的 pom.xml 看起来像这样:
<project>
<parent>
<artifactId>base-server-product</artifactId>
<groupId>XXXXXXXXXXXx</groupId>
<version>1.0</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
<reportPlugins>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</project>
当然,我在 src/site 中有 site.xml 文件。