首页 > 解决方案 > 找不到 io.spring.gradle:propdeps-plugin:0.0.9.RELEASE

问题描述

我收到一些错误:


    Could not resolve all artifacts for configuration 
':gisett-backend:classpath'. 
Could not find io.spring.gradle:propdeps-plugin:0.0.9.RELEASE. Searched in the following locations: - 
https://jcenter.bintray.com/io/spring/gradle/propdeps-plugin/0.0.9.RELEASE/propdeps-plugin-0.0.9.RELEASE.pom - https://repo.maven.apache.org/maven2/io/spring/gradle/propdeps-plugin/0.0.9.RELEASE/propdeps-plugin-0.0.9.RELEASE.pom
 - https://plugins.gradle.org/m2/io/spring/gradle/propdeps-plugin/0.0.9.RELEASE/propdeps-plugin-0.0.9.RELEASE.pom 

这里是 build.gradle:github.com/EstherSD/gis/blob/main/build.gradle

我该如何解决?

谢谢

标签: javaspring-bootautomationbuild.gradle

解决方案


在存储库部分添加 spring URL 为我修复了它:

 repositories {
        maven {
            url "https://repo.spring.io/plugins-release"
            mavenCentral()
        }
    }

推荐阅读