From eeb0dff456e7a9c2b710e7a792d70a185256659c Mon Sep 17 00:00:00 2001 From: chylex <info@chylex.com> Date: Sat, 12 Dec 2015 19:30:21 +0100 Subject: [PATCH] Update gitignore and build.gradle for 1.8.8 --- .gitignore | 2 ++ build.gradle | 10 ++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3438c28..9a42910 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,11 @@ bin/ build/ eclipse/ +run/ .gradle/ .settings/ .classpath .project .DS_Store +*.launch Thumbs.db diff --git a/build.gradle b/build.gradle index 4dde1d8..2e9bad4 100644 --- a/build.gradle +++ b/build.gradle @@ -58,12 +58,14 @@ task shadeJar(type: Jar, dependsOn: "jar"){ jar.enabled = false reobf{ - reobf java7Jar{ classpath -> classpath = configurations.compile } - reobf java8Jar{ classpath -> classpath = configurations.compile } - reobf shadeJar{ classpath -> classpath = configurations.compile } + java7Jar{ classpath = sourceSets.main.compileClasspath } + java8Jar{ classpath = sourceSets.main.compileClasspath } + shadeJar{ classpath = sourceSets.main.compileClasspath } } -reobf.enabled = false +reobfJar{ + enabled = false +} processResources{ inputs.property "version", project.version