Updated the sources and deobf build configurations

This commit is contained in:
Adubbz 2015-01-12 12:25:11 +11:00
parent e2964e30e0
commit 74c31f70b8
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
/build/
/bin/
/Mixin/
/repo/
/run/
/.gradle/
/.settings/

View File

@ -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'
}