Gradle 6.9.4 复制 / 导出依赖 jar 包到指定目录
由于是docker 构建因此下载包很慢 需要将下载到本地
task copyJars(type: Copy) {
from configurations.runtimeClasspath
into "$buildDir/libs/deps"
}
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/17337716.html