refactor: renamed variables in build scripts

This commit is contained in:
zihluwang
2024-10-22 22:19:05 +08:00
parent a52cb66197
commit 96787889a6
11 changed files with 135 additions and 66 deletions
@@ -17,8 +17,7 @@
import java.net.URI
val buildGroupId: String by project
val buildVersion: String by project
val artefactVersion: String by project
val projectUrl: String by project
val projectGithubUrl: String by project
val licenseName: String by project
@@ -28,8 +27,8 @@ val javaJwtVersion: String by project
val jacksonVersion: String by project
val springBootVersion: String by project
group = buildGroupId
version = buildVersion
group = "com.onixbyte"
version = artefactVersion
dependencies {
implementation(project(":guid"))
@@ -58,9 +57,9 @@ tasks.test {
publishing {
publications {
create<MavenPublication>("simpleJwtSpringBootStarter") {
groupId = buildGroupId
groupId = group.toString()
artifactId = "simple-jwt-spring-boot-starter"
version = buildVersion
version = artefactVersion
pom {
name = "Simple JWT :: Spring Boot Starter"