Created
September 19, 2019 14:43
-
-
Save erics/6ce0927e6b87209f05f2ee3e1bea72c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 匯出所有用到的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