Update gradle and dependencies for 1.11.2

This commit is contained in:
Gunther De Wachter
2017-06-02 23:37:27 +02:00
parent 1cde7bc933
commit 5fff8310d6
3 changed files with 24 additions and 6 deletions
+12 -1
View File
@@ -42,8 +42,19 @@ task deinstallIC2(type: Delete) {
delete fileTree(dir: minecraft.runDir + "/mods", include: "*industrialcraft-2*.jar")
}
// COMPATLAYER
task installCompatLayer(type: Copy, dependsOn: "deinstallCompatLayer") {
from { configurations.mods }
include "**/*compatlayer*.jar"
into file(minecraft.runDir + "/mods")
}
task deinstallCompatLayer(type: Delete) {
delete fileTree(dir: minecraft.runDir + "/mods", include: "*compatlayer*.jar")
}
// TOP
task installTop(type: Copy, dependsOn: "deinstallTop") {
task installTop(type: Copy, dependsOn: ["deinstallTop", "installCompatLayer"]) {
from { configurations.mods }
include "**/*TheOneProbe*.jar"
into file(minecraft.runDir + "/mods")