假设我的gradle依赖项是:
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile 'org.apache.commons:commons-io:1.3.2'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
如何将其添加到使用java
插件和:jar
任务创建的jar文件中?
我只为libs找到this解决方案,但也没有。
看到我有本地依赖项和maven依赖项。
答案 0 :(得分:1)
jar {
from { configurations.runtime.collect { zipTree(it) } }
}