Include LibAC in dev jar also
This commit is contained in:
parent
b6edb0b6d1
commit
c3590db1d8
2 changed files with 6 additions and 1 deletions
|
@ -181,9 +181,14 @@ jar.finalizedBy('reobfJar')
|
||||||
// publish.dependsOn('reobfJar')
|
// publish.dependsOn('reobfJar')
|
||||||
|
|
||||||
task devJar(type: Jar) {
|
task devJar(type: Jar) {
|
||||||
|
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
from sourceSets.main.allJava
|
from sourceSets.main.allJava
|
||||||
classifier = 'dev'
|
classifier = 'dev'
|
||||||
|
|
||||||
|
from {
|
||||||
|
configurations.provided.asFileTree.collect{zipTree(it)}
|
||||||
|
}
|
||||||
manifest {
|
manifest {
|
||||||
attributes([
|
attributes([
|
||||||
"Specification-Title": project.name,
|
"Specification-Title": project.name,
|
||||||
|
|
|
@ -5,7 +5,7 @@ org.gradle.daemon=false
|
||||||
|
|
||||||
mc_version=1.19.4
|
mc_version=1.19.4
|
||||||
forge_version=45.0.46
|
forge_version=45.0.46
|
||||||
myversion=1.0.7.0421231818
|
myversion=1.0.7.0422230320
|
||||||
parchment_version=2023.03.12
|
parchment_version=2023.03.12
|
||||||
# luckperms_api_version=5.4
|
# luckperms_api_version=5.4
|
||||||
|
|
||||||
|
|
Reference in a new issue