gpt4 book ai didi

Maven站点警告: The repository url 'https://maven-repository.dev.java.net/nonav/repository' is invalid

转载 作者:行者123 更新时间:2023-12-03 13:28:47 28 4
gpt4 key购买 nike

我在一个多模块项目中使用 Maven 3.2.3。我想生成一个 checkstyle 和 findbugs 报告,所以我配置了以下内容:

    <reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.13</version>
<reportSets>
<reportSet>
<reports>
<report>checkstyle</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
</plugin>
</plugins>
</reporting>

但是,当我运行时
mvn site:site site:deploy

我反复收到以下警告……
[WARNING] The repository url 'https://maven-repository.dev.java.net/nonav/repository' is invalid - Repository 'java.net' will be blacklisted.

我的 pom.xml 文件或 ~/.m2/settings.xml 文件中都没有引用此 repo。我该如何追踪并最终解决警告?

最佳答案

我有 Maven 项目,其中聚合与继承分开:
maven module inheritance vs aggregation .为了

mvn project-info-reports:dependencies

作品,聚合 pom必须继承 parent .
为了避免列入黑名单的存储库警告,父 reporting必须按如下所述进行配置,或者可以很简单:
<properties>
...
<dependency.locations.enabled>false</dependency.locations.enabled>
</properties>

关于Maven站点警告: The repository url 'https://maven-repository.dev.java.net/nonav/repository' is invalid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28098566/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com