You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
652 B
25 lines
652 B
Cannot resolve plugin org.apache.maven.plugins:maven-compiler-plugin
|
|
|
|
2021-12-11
|
|
解决办法:
|
|
D:\maven\conf\settings.xml文件中添加如下代码
|
|
<mirror>
|
|
<id>alimaven</id>
|
|
<name>aliyun maven</name>
|
|
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
|
|
<mirrorOf>central</mirrorOf>
|
|
</mirror>
|
|
|
|
<mirror>
|
|
<id>junit</id>
|
|
<name>junit Address/</name>
|
|
<url>http://jcenter.bintray.com/</url>
|
|
<mirrorOf>central</mirrorOf>
|
|
</mirror>
|
|
|
|
<mirror>
|
|
<id>alimaven</id>
|
|
<name>aliyun maven</name>
|
|
<url>http://central.maven.org/maven2</url>
|
|
<mirrorOf>central</mirrorOf>
|
|
</mirror> |