gpt4 book ai didi

maven - Gradle无法解决Spring依赖关系

转载 作者:行者123 更新时间:2023-12-03 04:04:40 25 4
gpt4 key购买 nike

我正在尝试使用以下build.gradle文件构建项目。

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath('org.springframework.boot:spring-boot-gradle-plugin:1.2.1.RELEASE')
}
}

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'

repositories {
maven {
url 'https://repo.spring.io/milestone'
}
mavenCentral()
}

dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.boot:spring-boot-starter-data-mongodb:1.2.2.RELEASE')
compile('org.springframework.data:spring-data-mongodb:1.7.0.RC1')

compile('org.springframework.cloud:spring-cloud-spring-service-connector')
compile('org.springframework.cloud:spring-cloud-cloudfoundry-connector')

compile 'org.springframework:spring-test:4.1.5.RELEASE'
compile 'de.grundid.opendatalab:geojson-jackson:1.3'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.5.1'
compile 'org.apache.httpcomponents:httpclient:4.4'

testCompile('junit:junit')
}

task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
我添加了里程碑存储库,因为我需要spring-data-mongodb 1.7.0.RC1依赖项。但是,parent-poms的引用似乎出了点问题,因为gradle无法获取以下依赖项: org.springframework.data.build:spring-data-parent:1.6.0.RC1退出并显示以下错误:
Could not find org.springframework.data.build:spring-data-parent:1.6.0.RC1.
Searched in the following locations:
https://repo.spring.io/milestone/org/springframework/data/build/spring-data-parent/1.6.0.RC1/spring-data-parent-1.6.0.RC1.pom
https://repo.spring.io/milestone/org/springframework/data/build/spring-data-parent/1.6.0.RC1/spring-data-parent-1.6.0.RC1.jar
https://repo1.maven.org/maven2/org/springframework/data/build/spring-data-parent/1.6.0.RC1/spring-data-parent-1.6.0.RC1.pom
https://repo1.maven.org/maven2/org/springframework/data/build/spring-data-parent/1.6.0.RC1/spring-data-parent-1.6.0.RC1.jar
gradlew build --debug命令的输出可以在这里找到: http://pastebin.com/seYRMFQP
该命令还向stdout产生了以下输出: http://pastebin.com/atcWQsKF
我已经尝试清理本地gradle缓存,但无法解决问题。

最佳答案

很抱歉给您带来不便,该 Artifact 当前在release存储库中放错了位置,尽管它应该在milestone中。

我们将其尽快移至里程碑。在此之前,请将发布存储库url 'https://repo.spring.io/release'添加到您的构建中。

关于maven - Gradle无法解决Spring依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28948540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com