编译maven项目出现Could not find artifact org.restlet.jee:org.restlet.parent:pom:2.2.1问题

经过几天的折腾,问题最终解决了。

出现的问题:

After correcting the problems, you can resume the build with the command
mvn -rf :csmp-agent-plugin-fc

编译maven项目出现Could not find artifact org.restlet.jee:org.restlet.parent:pom:2.2.1问题_第1张图片

解决方式三种:

第一种:首先查看maven仓库中保存的版本是多少,再修改编译项目csmp-agent-plugin-fc下pom.xml

修改前:


org.restlet.jee
org.restlet
2.2.1

修改后:


org.restlet.jee
org.restlet
2.0.8


第二种:在编译项目csmp-agent-plugin-fc下pom.xml添加如下配置

 xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
                http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0

    org.restlet.maven
    org.restlet.maven.test
    ${project.artifactId}
    jar
    1.0.0-snapshot

    
        
            org.restlet.jee
            org.restlet
            2.1.1
        
    

    
        
            maven-restlet
            Public online Restlet repository
            http://maven.restlet.com
        
    

第三种:手动下载2.1.1版本放到本地仓库对应目录

http://maven.restlet.com/org/restlet/jee/org.restlet.parent/2.1.1/

你可能感兴趣的:(Error)