Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resour

刚配好环境,导进新项目时遇到pom.xml报:

Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resour

添加以下内容即可:
conf/settting.xml文件

    <mirror> 
        <id>Central</id> 
        <url>http://repo1.maven.org/maven2</url> 
        <mirrorOf>central</mirrorOf> 
    </mirror>

猜你喜欢

转载自blog.csdn.net/change_on/article/details/80976849