Could not find artifact org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:pom

##报错信息:
Could not find artifact org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:pom:unknown in central (https://repo.maven.apache.org/maven2)
在这里插入图片描述
pom文件中的依赖(且爆红):


        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
        
    

原因分析: 我用的Spring Boot版本是2.2.5 RELEASE, 之前加Eureka Server 依赖没有问题, 并且Eureka Server的版本是最新版本2.2.1 RELEASE, 报错信息是unknown版本, 所以添加依赖版本:


        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
            2.2.1.RELEASE
        
    

然后重新导入即可将解决问题
Could not find artifact org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:pom_第1张图片

你可能感兴趣的:(Could not find artifact org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:pom)