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
@@ -59,14 +59,14 @@ tasks.test {
publishing {
publications {
create<MavenPublication>("guid") {
create<MavenPublication>("simpleJwtSpringBootStarter") {
groupId = sGroupId
artifactId = "guid"
artifactId = "simple-jwt-spring-boot-starter"
version = sVersion
pom {
name = "DevKit - GUID"
description = "The guid module of JDevKit."
name = "Simple JWT :: Spring Boot Starter"
description = "The Spring Boot Starter of Simple JWT."
url = projectUrl
licenses {
@@ -95,7 +95,7 @@ publishing {
from(components["java"])
signing {
sign(publishing.publications["guid"])
sign(publishing.publications["simpleJwtSpringBootStarter"])
}
}