当前位置: 首页 > 工具软件 > Plugin.NET > 使用案例 >

Plugin ‘net.alchim31.maven:scala-maven-plugin:3.2.0‘ not found

百里丁雨
2023-12-01

解决方法:
在maven库中的settting.xml中的mirrors标签修改一下就好

修改前:

 <mirrors>
	<mirror>
	
		<id>alimaven</id>
		<name>aliyun maven</name>
		<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
		<mirrorOf>central</mirrorOf>
	</mirror>
	 
	<mirror>
		<id>aliyunmaven</id>
		<mirrorOf>*</mirrorOf>
		<name>阿里云spring插件仓库</name>
		<url>https://maven.aliyun.com/repository/spring-plugin</url>
	</mirror>
	<mirror>
		<id>nexus</id>
		<name>internal nexus repository</name>
		<url>https://repo.maven.apache.org/maven2</url>
		<mirrorOf>central</mirrorOf>
	</mirror>
	<mirror>
		<id>nexus-aliyun</id>
		<mirrorOf>*</mirrorOf>
		<name>Nexus aliyun</name>
		<url>https://maven.aliyun.com/nexus/content/groups/public</url>
	</mirror>
	<mirror>
		<id>repo2</id>
		<name>Mirror from Maven Repo2</name>
		<url>https://repo.spring.io/plugins-release/</url>
		<mirrorOf>central</mirrorOf>
	</mirror>
</mirrors>

修改后:
提示:只需要保留下面那个就可以,其他的都没用

 <mirrors>
	<mirror>
		<id>aliyun</id>
		<mirrorOf>central</mirrorOf>
		<name>maven.aliyun.com</name>
		<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
	</mirror>
</mirrors>

返回IDEA,***关掉IDEA,再重新代开IDEA,再reload***即可。

 类似资料: