From 0e631830d7408710e0ced3dfc35f6fa3f3756773 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 4 Apr 2016 17:32:59 +1000 Subject: 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. --- build.gradle | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'build.gradle') 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 -- cgit