9
0
mirror of https://github.com/Auxilor/Reforges.git synced 2025-12-28 03:19:29 +00:00

Fixed Publications

This commit is contained in:
Auxilor
2023-06-03 18:02:25 +01:00
parent b6dbb08a00
commit 23ac0ee77c

View File

@@ -11,9 +11,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)
}
}