Tentative JitPack build fix 2

This commit is contained in:
Lukas Rieger (Blue) 2022-10-13 21:46:41 +02:00
parent 2502f3b442
commit 3949ebcb56
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 12 additions and 0 deletions

View File

@ -94,3 +94,15 @@ tasks.processResources {
)
}
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
from(components["java"])
}
}
}