back_recharge
mashiyu 2019-01-23 10:02:41 +08:00
parent 50ee40a186
commit f408616cc2
1 changed files with 2 additions and 2 deletions

View File

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