9
0
mirror of https://github.com/Auxilor/EcoMobs.git synced 2025-12-20 07:29:21 +00:00

Fixed Publications

This commit is contained in:
Auxilor
2023-06-03 18:01:25 +01:00
parent 372b74ef69
commit e5b43cce98

View File

@@ -9,9 +9,12 @@ dependencies {
publishing {
publications {
register("maven", MavenPublication::class) {
from(components["java"])
register<MavenPublication>("maven") {
groupId = project.group.toString()
version = project.version.toString()
artifactId = rootProject.name
artifact(rootProject.tasks.shadowJar.get().archiveFile)
}
}