Skip to content

Commit

Permalink
update gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
tangzx committed May 2, 2017
1 parent a2852ae commit 63fe952
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ tasks.withType(JavaCompile) {
}

task buildZip (type: Zip, dependsOn: [jar]) {
baseName = 'LuaIDE'
baseName = 'EmmyLua'
destinationDir = file(".")
from (tasks['jar'].outputs) {
into '/LuaIDE/lib'
into '/EmmyLua/lib'
}
from ("libs") {
into '/LuaIDE/lib'
into '/EmmyLua/lib'
}
from (fileTree(dir:'src/main/resources/', includes:['std/**', 'debugger/**'])) {
into '/LuaIDE/'
into '/EmmyLua/'
}
}

0 comments on commit 63fe952

Please sign in to comment.