0

谁能告诉我为什么 gradle 无法使用以下脚本加载 j2v8 依赖项:

apply plugin: 'java'

sourceCompatibility = 1.7
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

test {
    useTestNG()
    include '**'
    testLogging.showStandardStreams = true
}

repositories {
    mavenCentral()
}

dependencies {
    compile "com.google.guava:guava:18.0"
    compile "com.google.code.findbugs:jsr305:3.0.0"
    compile 'com.eclipsesource.j2v8:j2v8_linux_x86_64:3.1.6'
    testCompile "org.testng:testng:6.9.9"
}

使用 'com.eclipsesource.j2v8:j2v8_linux_x86_64:3.1.1' 效果很好,但使用 3.1.6 我得到错误 Error:(18, 13) Failed to resolve: com.eclipsesource.j2v8:j2v8_linux_x86_64:3.1.6

4

1 回答 1

0

要使用本地 maven 的 m2 缓存:

repositories {
  mavenLocal()
}
于 2015-12-18T19:55:43.003 回答