本文介绍: Plugin org.apache.maven.plugins:maven–jar–plugin:3.2.0 or one of its dependencies could not be…
[WARNING] The POM for org.apache.maven.plugins:maven-jar-plugin:jar:3.2.0 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.339 s
[INFO] Finished at: 2022-04-28T20:44:53+08:00
[INFO] Final Memory: 19M/135M
[INFO] ------------------------------------------------------------------------
[ERROR] Plugin org.apache.maven.plugins:maven-jar-plugin:3.2.0 or one of its dependencies could not be resolved: Failure to find org.apache.maven.plugins:maven-jar-plugin:jar:3.2.0 in http://sy-maven.189read.com:8081/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of shutongmirror has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[JENKINS] Archiving /ytxt/.jenkins/jobs/zjcdc_manager/workspace/pom.xml to com.dyttx/zjcdc_manager/0.0.1-SNAPSHOT/zjcdc_manager-0.0.1-SNAPSHOT.pom
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException
channel stopped
Finished: FAILURE
问题原因是库里面没有maven-jar–plugin:3.2.0这个包,如果是本地环境只要用maven下载就行了,然而公司的私库里面就没有3.2.0的版本,这时候就需要将3.2.0版本覆盖掉
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<!--公司库中有的版本-->
<version>3.1.0</version>
<configuration combine.self="override"/>
</plugin>
核心代码:<configuration combine.self=”override“/>
通过在configuration元素中增加combine.children和combine.self属性,子POM可以控制Maven怎么合并plugin的configuration。
combine.self=”override“表示子POM的属性完全覆盖父POM的。
原文地址:https://blog.csdn.net/qq_29335271/article/details/124491375
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_35244.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。