diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-04-04 17:32:59 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-04-04 17:32:59 +1000 |
commit | 0e631830d7408710e0ced3dfc35f6fa3f3756773 (patch) | |
tree | 0c0f4014d10583eff3ec2e9e335536e7f3cebf0f /build.gradle | |
parent | 915139115434ff5797df6f82a63578e938864016 (diff) | |
download | GT5-Unofficial-0e631830d7408710e0ced3dfc35f6fa3f3756773.tar.gz GT5-Unofficial-0e631830d7408710e0ced3dfc35f6fa3f3756773.tar.bz2 GT5-Unofficial-0e631830d7408710e0ced3dfc35f6fa3f3756773.zip |
Added in an Iron Blast furnace, to give an alternative to the Bronze one.
Takes 5-6x longer, Uses 3x fuel, but is far cheaper to make.
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 5af53419bb..7edbb5fad2 100644 --- a/build.gradle +++ b/build.gradle @@ -41,4 +41,22 @@ targetCompatibility = 1.7 archivesBaseName = "MiscUtils" version = "0.9.8" -minecraft.version = "1.7.10-10.13.4.1448-1.7.10"
\ No newline at end of file +minecraft.version = "1.7.10-10.13.4.1448-1.7.10" + +task sourceJar(type: Jar) { + from sourceSets.main.allSource + classifier = 'sources' +} + +task devJar(type: Jar) { + from sourceSets.main.output + classifier = 'dev' + manifest { + //attributes 'FMLCorePlugin': 'WhateverLoaderClass' + //attributes 'FMLCorePluginContainsFMLMod': 'true' + } +} + +artifacts { + archives devJar +}
\ No newline at end of file |