报错信息

[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的。

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐