2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-26 07:47:13 -07:00

Set the artifact ID from the project name for maven publishing

This commit is contained in:
Geert Bevin 2023-03-07 13:43:45 -05:00
parent 7a3d44a412
commit 79938eeb61

View file

@ -63,6 +63,7 @@ publishing {
} }
publications { publications {
create<MavenPublication>("maven") { create<MavenPublication>("maven") {
artifactId = rootProject.name
from(components["java"]) from(components["java"])
} }
} }