Skip to content

Commit 35212f2

Browse files
committed
fix: Fixed the issue that some artifacts cannot be published to maven repository.
1 parent e120bec commit 35212f2

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

simple-jwt-spring-boot-starter/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ tasks.test {
5959

6060
publishing {
6161
publications {
62-
create<MavenPublication>("guid") {
62+
create<MavenPublication>("simpleJwtSpringBootStarter") {
6363
groupId = sGroupId
64-
artifactId = "guid"
64+
artifactId = "simple-jwt-spring-boot-starter"
6565
version = sVersion
6666

6767
pom {
68-
name = "DevKit - GUID"
69-
description = "The guid module of JDevKit."
68+
name = "Simple JWT :: Spring Boot Starter"
69+
description = "The Spring Boot Starter of Simple JWT."
7070
url = projectUrl
7171

7272
licenses {
@@ -95,7 +95,7 @@ publishing {
9595
from(components["java"])
9696

9797
signing {
98-
sign(publishing.publications["guid"])
98+
sign(publishing.publications["simpleJwtSpringBootStarter"])
9999
}
100100
}
101101

webcal/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ tasks.test {
2727

2828
publishing {
2929
publications {
30-
create<MavenPublication>("guid") {
30+
create<MavenPublication>("webcal") {
3131
groupId = sGroupId
32-
artifactId = "guid"
32+
artifactId = "webcal"
3333
version = sVersion
3434

3535
pom {
36-
name = "DevKit - GUID"
37-
description = "The guid module of JDevKit."
36+
name = "DevKit :: WebCal"
37+
description = "The web calendar module of JDevKit."
3838
url = projectUrl
3939

4040
licenses {
@@ -63,7 +63,7 @@ publishing {
6363
from(components["java"])
6464

6565
signing {
66-
sign(publishing.publications["guid"])
66+
sign(publishing.publications["webcal"])
6767
}
6868
}
6969

0 commit comments

Comments
 (0)