No plugin found for prefix ‘install‘ in the current project and in the plugin groups 的解决方法
Posted 秋9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了No plugin found for prefix ‘install‘ in the current project and in the plugin groups 的解决方法相关的知识,希望对你有一定的参考价值。
【现象】
[WARNING] Failure to transfer org.apache.maven.plugins/maven-metadata.xml from http://maven.oschina.net/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of osc has elapsed or updates are forced. Original error: Could not transfer metadata org.apache.maven.plugins/maven-metadata.xml from/to osc (http://maven.oschina.net/content/groups/public/): Transfer failed for http://maven.oschina.net/content/groups/public/org/apache/maven/plugins/maven-metadata.xml
[WARNING] Failure to transfer org.codehaus.mojo/maven-metadata.xml from http://maven.oschina.net/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of osc has elapsed or updates are forced. Original error: Could not transfer metadata org.codehaus.mojo/maven-metadata.xml from/to osc (http://maven.oschina.net/content/groups/public/): Transfer failed for http://maven.oschina.net/content/groups/public/org/codehaus/mojo/maven-metadata.xml
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.341 s
[INFO] Finished at: 2023-02-11T21:25:42+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] No plugin found for prefix 'install' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\\Users\\86183\\.m2\\repository), osc (http://maven.oschina.net/content/groups/public/)] -> [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:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
【解决方法】
settings.xml文件的<mirrors>,新增如下信息
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
新增后的截图如下:
以上是关于No plugin found for prefix ‘install‘ in the current project and in the plugin groups 的解决方法的主要内容,如果未能解决你的问题,请参考以下文章