Worked patch on 1.20.1

This commit is contained in:
BitHeaven 2024-09-29 13:49:18 +05:00
parent b50e01f79f
commit 4655fcf16f
1 changed files with 4 additions and 2 deletions

View File

@ -89,9 +89,11 @@ jar {
from("LICENSE") { from("LICENSE") {
rename { "${it}_${project.archivesBaseName}" } rename { "${it}_${project.archivesBaseName}" }
} }
from configurations.includedJars.collect { from {
configurations.includedJars.collect {
it.isDirectory() ? it : zipTree(it) it.isDirectory() ? it : zipTree(it)
} }
}
} }
// configure the maven publication // configure the maven publication
publishing { publishing {