2015-12-18 45 views
0

誰能告訴我爲什麼gradle這個加載失敗j2v8依賴與下面的腳本:搖籃無法找到現有的M2庫

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我得到的錯誤錯誤:(18,13)無法解析:com.eclipsesource.j2v8:j2v8_linux_x86_64:3.1.6

回答

0

要使用本地Maven的M2高速緩存:

repositories { 
    mavenLocal() 
} 
+0

我想actuellay從maven centr下載它它確實存在... – avianey

+1

對不起,誤解了你的問題。試試'--refresh-dependencies'? – RaGe