diff --git a/simple-jwt-spring-boot-starter/build.gradle.kts b/simple-jwt-spring-boot-starter/build.gradle.kts index a931b81..0dad26a 100644 --- a/simple-jwt-spring-boot-starter/build.gradle.kts +++ b/simple-jwt-spring-boot-starter/build.gradle.kts @@ -59,14 +59,14 @@ tasks.test { publishing { publications { - create("guid") { + create("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"]) } } diff --git a/webcal/build.gradle.kts b/webcal/build.gradle.kts index af5fc45..1dd216e 100644 --- a/webcal/build.gradle.kts +++ b/webcal/build.gradle.kts @@ -27,14 +27,14 @@ tasks.test { publishing { publications { - create("guid") { + create("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"]) } }