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
@@ -26,8 +25,8 @@ val licenseUrl: String by project
val springBootVersion: String by project
group = buildGroupId
version = buildVersion
group = "com.onixbyte"
version = artefactVersion
dependencies {
implementation(project(":devkit-utils"))
@@ -51,9 +50,9 @@ tasks.test {
publishing {
publications {
create<MavenPublication>("propertyGuardSpringBootStarter") {
groupId = buildGroupId
groupId = group.toString()
artifactId = "property-guard-spring-boot-starter"
version = buildVersion
version = artefactVersion
pom {
name = "Property Guard Spring Boot Starter"