最新的 Maven 程序集插件未通过 Nexus 的问题
Issue with latest maven assembly plugin not coming through to nexus
我有一个复杂的项目设置。
在我的子模块之一中,我在没有版本的情况下引用了下面的插件。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
Maven 然后决定尝试使用版本 org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2
解决此依赖关系
我无法在我的 Nexus 服务器上找到它?
它解决了我的很多其他依赖项,但它无法从中央 Maven (https://repo1.maven.org/maven2/) 中提取这个特定的依赖项?
谁能告诉我可能是什么问题?
Plugin org.apache.maven.plugins:maven-jar-plugin:3.0.2 or one of its dependencies could not be resolved: Failure to find org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2 in http://{nexus-server}:8082/repository/maven-public/
Nexus 服务器 OSS 3.3.0-01
我找到问题了。缓存有问题。
需要禁用存储库中的设置。
负缓存
未找到缓存已启用:
缓存代理存储库中不存在的内容的响应
我有一个复杂的项目设置。 在我的子模块之一中,我在没有版本的情况下引用了下面的插件。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
Maven 然后决定尝试使用版本 org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2
解决此依赖关系我无法在我的 Nexus 服务器上找到它?
它解决了我的很多其他依赖项,但它无法从中央 Maven (https://repo1.maven.org/maven2/) 中提取这个特定的依赖项?
谁能告诉我可能是什么问题?
Plugin org.apache.maven.plugins:maven-jar-plugin:3.0.2 or one of its dependencies could not be resolved: Failure to find org.apache.maven.plugins:maven-jar-plugin:jar:3.0.2 in http://{nexus-server}:8082/repository/maven-public/
Nexus 服务器 OSS 3.3.0-01
我找到问题了。缓存有问题。 需要禁用存储库中的设置。
负缓存 未找到缓存已启用: 缓存代理存储库中不存在的内容的响应