9
0
mirror of https://github.com/Auxilor/EcoJobs.git synced 2025-12-21 07:59:15 +00:00

Fixed Publications

This commit is contained in:
Auxilor
2023-06-03 18:03:16 +01:00
parent ee3298d260
commit f6fe3477c6

View File

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