eekboom
11/15/2019, 2:17 PMtask sourcesJar(type: Jar) {
archiveClassifier = 'sources'
from sourceSets.main.allJava
}
I got so far as
tasks.register<Jar>("sourcesJar") {
archiveClassifier.set("sources")
from(sourceSets.main.????)
}
I have groovy and groovy sources now, so “allJava” makes no sense anymore anyway.octylFractal
11/15/2019, 4:08 PMeekboom
11/18/2019, 9:38 AM