Skip to content

Instantly share code, notes, and snippets.

@erics
Created September 19, 2019 14:43
Show Gist options
  • Save erics/6ce0927e6b87209f05f2ee3e1bea72c7 to your computer and use it in GitHub Desktop.
Save erics/6ce0927e6b87209f05f2ee3e1bea72c7 to your computer and use it in GitHub Desktop.
/** 匯出所有用到的jar,包括依賴的jar
使用前將 build.gradle 的 dependencies 中 implementation 改成 compile
*/
task copyJars(type:Copy) {
from configurations.runtime
into 'lib' // 目標位置
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment