add a deobf jar to the maven so you can use deobfCompile (hopefully?)

This commit is contained in:
Ellpeck 2018-11-23 15:36:11 +01:00
parent 0365acb1f7
commit 66f3770c3c

View file

@ -77,10 +77,17 @@ jar {
}
task deobfJar(type: Jar) {
from sourceSets.main.output
from sourceSets.main.java
classifier = 'dev'
}
publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
artifact deobfJar
}
}
repositories {