fix: Fixed the issue that some artifacts cannot be published to maven repository.

This commit is contained in:
Zihlu Wang
2024-01-31 12:25:29 +08:00
parent e120becf94
commit 35212f2f1c
2 changed files with 10 additions and 10 deletions
+5 -5
View File
@@ -27,14 +27,14 @@ tasks.test {
publishing {
publications {
create<MavenPublication>("guid") {
create<MavenPublication>("webcal") {
groupId = sGroupId
artifactId = "guid"
artifactId = "webcal"
version = sVersion
pom {
name = "DevKit - GUID"
description = "The guid module of JDevKit."
name = "DevKit :: WebCal"
description = "The web calendar module of JDevKit."
url = projectUrl
licenses {
@@ -63,7 +63,7 @@ publishing {
from(components["java"])
signing {
sign(publishing.publications["guid"])
sign(publishing.publications["webcal"])
}
}