admin管理员组

文章数量:1612098

【现象】

[WARNING] Failure to transfer org.apache.maven.plugins/maven-metadata.xml from http://maven.oschina/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/content/groups/public/): Transfer failed for http://maven.oschina/content/groups/public/org/apache/maven/plugins/maven-metadata.xml
[WARNING] Failure to transfer org.codehaus.mojo/maven-metadata.xml from http://maven.oschina/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/content/groups/public/): Transfer failed for http://maven.oschina/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/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/confluence/display/MAVEN/NoPluginFoundForPrefixException

【解决方法】

settings.xml文件的<mirrors>,新增如下信息

	 <mirror>
	    <id>nexus-aliyun</id>
	    <mirrorOf>*</mirrorOf>
	    <name>Nexus aliyun</name>
	    <url>http://maven.aliyun/nexus/content/groups/public</url>
	</mirror>

新增后的截图如下:

 

本文标签: 解决方法installprefixPlugingroups