Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Gradle 将依赖项复制到项目文件夹中的某个位置?
我已经设置 SBT 来执行此操作,但我不确定 Gradle
您的用例会对您执行此操作的方式产生重大影响。但是,一般回答您可以执行以下操作以从集合复制到目录。
task copyDeps(type: Copy) { from configurations.runtime into "${buildDir}/deps" }
调整以满足您的用例。如果您正在尝试创建 Java 应用程序,请查看应用程序插件。