1
我有一個使用json.jar庫的簡單java項目。 gradle.build文件內容是:配置':compile'在解析後無法更改依賴關係
apply plugin: 'java'
jar {
manifest {
attributes(
'Class-Path': configurations.compile.collect { it.getName() }.join(' '),
'Main-Class': 'main.java.Main'
)
}
}
dependencies {
compile 'org.json:json:20160212'
}
問題是,當我想JSON添加到我的類路徑中,並使用它,這個錯誤發生
* Where:
Build file '/home/tina-admin/Documents/myJavaProjects/LongMan/build.gradle' line: 11
* What went wrong:
A problem occurred evaluating root project 'LongMan'.
> Cannot change dependencies of configuration ':compile' after it has been resolved.
我怎樣才能解決這個問題?
tnx很好運行 – reza
附加組件:問題似乎是由使用'confi gutries.compile'在'jar'塊中 – rrobby86