Gradle 无法解析';弹簧启动启动器请求jpa';使用无效URL的渐变依赖项

Gradle 无法解析';弹簧启动启动器请求jpa';使用无效URL的渐变依赖项,gradle,spring-boot,Gradle,Spring Boot,我依赖于spring boot starter请求jpa。似乎依赖项正在尝试使用无效URL解析 Error:Could not find org.springframework.boot:spring-boot-starter-request-jpa:. Searched in the following locations: https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-request-

我依赖于
spring boot starter请求jpa
。似乎依赖项正在尝试使用无效URL解析

Error:Could not find org.springframework.boot:spring-boot-starter-request-jpa:.
Searched in the following locations:
    https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.pom
    https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.jar
    https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.pom
    https://repo1.maven.org/maven2/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.jar
    file:/Users/*removed*/.m2/repository/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.pom
    file:/Users/*removed*/.m2/repository/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.jar
    http://server.com/nexus/content/groups/public/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.pom
    http://server.com/nexus/content/groups/public/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.jar
Required by:
    project :MobileAPI
我的gradle配置在12小时前运行良好,没有任何变化

repositories {
    jcenter()
    mavenCentral()
    mavenLocal()
    maven {
        url "${nexusRepoUrl}"
    }
}
在错误中,它使用的URL和路径为
https://jcenter.bintray.com/org/springframework/boot/spring-boot-starter-request-jpa//spring-boot-starter-request-jpa-.pom
现在有一个双正斜杠


我使用Gradle 3.1时出现此错误,我尝试升级到Gradle 3.4.1,但问题仍然存在。

因此。。我刚刚意识到,当我更改类名时,Intellij重构了依赖项名称:-p。重构时要小心