From 0c4ffc048f98017048d709fd396a87b5478a9cb3 Mon Sep 17 00:00:00 2001 From: kitsushadow Date: Thu, 8 Dec 2016 19:21:42 -0500 Subject: [PATCH] changed gradle.build to default --- build.gradle | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/build.gradle b/build.gradle index 50e965c1..6619189b 100644 --- a/build.gradle +++ b/build.gradle @@ -11,13 +11,13 @@ apply plugin: 'net.minecraftforge.gradle.forge' //Only edit below this line, the above code adds and enables the nessasary things for Forge to be setup. -version = "1.0.1" +version = "1.0" group= "nmd.primal.forgecraft" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "forgecraft" -sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly. +sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly. compileJava { - sourceCompatibility = targetCompatibility = "1.8" + sourceCompatibility = targetCompatibility = "1.6" } minecraft { @@ -58,21 +58,21 @@ dependencies { } processResources -{ - // this will ensure that this task is redone when the versions change. - inputs.property "version", project.version - inputs.property "mcversion", project.minecraft.version + { + // this will ensure that this task is redone when the versions change. + inputs.property "version", project.version + inputs.property "mcversion", project.minecraft.version - // replace stuff in mcmod.info, nothing else - from(sourceSets.main.resources.srcDirs) { - include 'mcmod.info' + // replace stuff in mcmod.info, nothing else + from(sourceSets.main.resources.srcDirs) { + include 'mcmod.info' - // replace version and mcversion - expand 'version':project.version, 'mcversion':project.minecraft.version - } + // replace version and mcversion + expand 'version':project.version, 'mcversion':project.minecraft.version + } - // copy everything else, thats not the mcmod.info - from(sourceSets.main.resources.srcDirs) { - exclude 'mcmod.info' - } -} \ No newline at end of file + // copy everything else, thats not the mcmod.info + from(sourceSets.main.resources.srcDirs) { + exclude 'mcmod.info' + } + }