如:Description Resource Path Location Type ArtifactTransferException: Could not transfer artifact commons-io:commons-io:jar
在你的pom.xml文件中添加以下代码;
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Maven Repository Switchboard</name>
<url>http://repo2.maven.org/maven2</url>
</repository>
</repositories>
此方法源于CSDN 博主铁铲的博客,
图片.png
这段代码是将本地仓库加载jar包关闭,直接从maven中央仓库下载jar包.只要你的pom.xml中配有坐标,相关的jar包都会直接下载到你的项目中.
网友评论