gpt4 book ai didi

java - Gradle没有下载Jax RS库

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

我正在尝试使用gradle下载和添加JaxRS库。这是构建脚本:

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

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
apply plugin: 'jetty'

jar {
baseName = 'rest-service'
version = '0.1.0'
}

repositories {
mavenCentral()
}

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
compile('javax.ws.rs:jsr311-api:1.1.1')
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("junit:junit")
}

task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}

最佳答案

尝试使用--debug并查看其用于检索依赖项的URL。然后使用curl或类似工具查看是否可用。如果您无法通过浏览器访问它或无法 curl ,则可能是网络问题。

还要检查Maven Central,也许他们不再有该版本。只是为了验证。

关于java - Gradle没有下载Jax RS库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29826695/

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