Updated the sources and deobf build configurations
This commit is contained in:
parent
e2964e30e0
commit
74c31f70b8
2 changed files with 7 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
||||||
/build/
|
/build/
|
||||||
/bin/
|
/bin/
|
||||||
/Mixin/
|
/Mixin/
|
||||||
|
/repo/
|
||||||
/run/
|
/run/
|
||||||
/.gradle/
|
/.gradle/
|
||||||
/.settings/
|
/.settings/
|
||||||
|
|
|
@ -127,11 +127,17 @@ tasks.build.dependsOn('createChangelog')
|
||||||
|
|
||||||
task sourceJar(type: Jar) {
|
task sourceJar(type: Jar) {
|
||||||
from sourceSets.main.allJava
|
from sourceSets.main.allJava
|
||||||
|
from project("Mixin").sourceSets.main.allJava
|
||||||
|
from (sourceSets.main.output) {
|
||||||
|
include 'LICENSE.txt'
|
||||||
|
}
|
||||||
|
|
||||||
classifier = 'sources'
|
classifier = 'sources'
|
||||||
}
|
}
|
||||||
|
|
||||||
task deobfJar(type: Jar) {
|
task deobfJar(type: Jar) {
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
|
from project("Mixin").sourceSets.main.output
|
||||||
classifier = 'deobf'
|
classifier = 'deobf'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue