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/
|
||||
/bin/
|
||||
/Mixin/
|
||||
/repo/
|
||||
/run/
|
||||
/.gradle/
|
||||
/.settings/
|
||||
|
|
|
@ -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'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue