back_recharge
mashiyu 2019-01-23 09:53:44 +08:00
parent c28ba0913e
commit 36b3739049
1 changed files with 2 additions and 2 deletions

View File

@ -47,10 +47,10 @@ task taskJar(type:Jar, dependsOn: compileJava) {
//libjar
task clearJars(type:Delete){
delete 'lib'
delete 'build/libs'
}
task copyJars(type: Copy, dependsOn:clearJars) {
from configurations.runtime
into 'lib' //
into 'build/libs' //
}