mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
parent
d1f4b1b1c0
commit
ec5e38a7a4
1 changed files with 11 additions and 0 deletions
11
build.gradle
11
build.gradle
|
@ -130,10 +130,17 @@ jar {
|
||||||
|
|
||||||
task deobfJar(type: Jar) {
|
task deobfJar(type: Jar) {
|
||||||
from(sourceSets.main.output)
|
from(sourceSets.main.output)
|
||||||
|
archiveName = "${baseName}-${version}-deobf.${extension}"
|
||||||
|
}
|
||||||
|
|
||||||
|
task sourcesJar(type: Jar) {
|
||||||
|
from(sourceSets.main.allSource)
|
||||||
archiveName = "${baseName}-${version}-sources.${extension}"
|
archiveName = "${baseName}-${version}-sources.${extension}"
|
||||||
}
|
}
|
||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
archives deobfJar
|
archives deobfJar
|
||||||
|
archives sourcesJar
|
||||||
}
|
}
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
@ -145,6 +152,10 @@ publishing {
|
||||||
from components.java
|
from components.java
|
||||||
|
|
||||||
artifact deobfJar {
|
artifact deobfJar {
|
||||||
|
classifier 'deobf'
|
||||||
|
}
|
||||||
|
|
||||||
|
artifact sourcesJar {
|
||||||
classifier 'sources'
|
classifier 'sources'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue