modifying build.gradle

This commit is contained in:
kitsushadow
2016-12-08 19:13:46 -05:00
parent 87ca08155f
commit 5fb0f1362f

View File

@@ -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. //Only edit below this line, the above code adds and enables the nessasary things for Forge to be setup.
version = "1.0" version = "1.0.1"
group= "com.yourname.modid" // http://maven.apache.org/guides/mini/guide-naming-conventions.html group= "nmd.primal.forgecraft" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "modid" archivesBaseName = "forgecraft"
sourceCompatibility = targetCompatibility = "1.6" // Need this here so eclipse task generates correctly. sourceCompatibility = targetCompatibility = "1.8" // Need this here so eclipse task generates correctly.
compileJava { compileJava {
sourceCompatibility = targetCompatibility = "1.6" sourceCompatibility = targetCompatibility = "1.8"
} }
minecraft { minecraft {
@@ -75,8 +75,4 @@ processResources
from(sourceSets.main.resources.srcDirs) { from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info' exclude 'mcmod.info'
} }
sourceSets {
main { output.resourcesDir = output.classesDir }
}
} }