From 3c0fc6c09221d63598fe89dac42fe76fb96dc05e Mon Sep 17 00:00:00 2001 From: Progwml6 Date: Sat, 23 Nov 2013 01:17:34 -0500 Subject: [PATCH] add in library jar, use classifier for the type of jar not appendix --- build.gradle | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 16e5a9cae5c..a793804ab69 100644 --- a/build.gradle +++ b/build.gradle @@ -94,10 +94,16 @@ jar { // because the normal output has been made to be obfuscated task deobfJar(type: Jar) { from sourceSets.main.output - appendix = 'deobf' + classifier = 'deobf' +} +task libJar(type: Jar) { + from(sourceSets.main.java) { + include "tconstruct/library/*" + } + classifier = 'lib' } artifacts { archives deobfJar - + archives libJar }