From 74c31f70b8f8efce3dcd2817cfa47c46ca2b0933 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Mon, 12 Jan 2015 12:25:11 +1100 Subject: [PATCH] Updated the sources and deobf build configurations --- .gitignore | 1 + build.gradle | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 219e29acc..09c38c8d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /build/ /bin/ /Mixin/ +/repo/ /run/ /.gradle/ /.settings/ diff --git a/build.gradle b/build.gradle index df97ea094..90a06d315 100644 --- a/build.gradle +++ b/build.gradle @@ -127,11 +127,17 @@ tasks.build.dependsOn('createChangelog') task sourceJar(type: Jar) { from sourceSets.main.allJava + from project("Mixin").sourceSets.main.allJava + from (sourceSets.main.output) { + include 'LICENSE.txt' + } + classifier = 'sources' } task deobfJar(type: Jar) { from sourceSets.main.output + from project("Mixin").sourceSets.main.output classifier = 'deobf' }