Refactor project to use a constant variable for the repository name. This ensures consistency and reduces the risk of errors when referencing the project name in multiple places. Updates were made in settings.gradle.kts, .gitea/template, and Main.kt to use the REPO_NAME variable.
6 lines
146 B
Kotlin
6 lines
146 B
Kotlin
plugins {
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
|
|
}
|
|
val REPO_NAME = "template"
|
|
rootProject.name = "${REPO_NAME}"
|