Skip to content

Commit

Permalink
switched back to previous gradle settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab committed Jul 25, 2017
1 parent f7af82c commit 4788262
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion build.gradle
Expand Up @@ -35,8 +35,17 @@ processResources {
include 'mcmod.info'
expand 'version':project.version, 'mcversion':project.minecraft.version
}

from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}

task deobfJar(type: Jar) {
from sourceSets.main.output
classifier = 'deobf'
}

artifacts {
archives deobfJar
}
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,3 +1,3 @@
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
org.gradle.jvmargs=-Xmx6G

0 comments on commit 4788262

Please sign in to comment.