refactor: renamed variables in build scripts
This commit is contained in:
@@ -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
|
||||
@@ -27,8 +26,8 @@ val licenseUrl: String by project
|
||||
val jacksonVersion: String by project
|
||||
val javaJwtVersion: String by project
|
||||
|
||||
group = buildGroupId
|
||||
version = buildVersion
|
||||
group = "com.onixbyte"
|
||||
version = artefactVersion
|
||||
|
||||
dependencies {
|
||||
implementation(project(":devkit-utils"))
|
||||
@@ -53,9 +52,9 @@ tasks.test {
|
||||
publishing {
|
||||
publications {
|
||||
create<MavenPublication>("simpleJwtAuthzero") {
|
||||
groupId = buildGroupId
|
||||
groupId = group.toString()
|
||||
artifactId = "simple-jwt-authzero"
|
||||
version = buildVersion
|
||||
version = artefactVersion
|
||||
|
||||
pom {
|
||||
name = "Simple JWT :: Auth0"
|
||||
|
||||
Reference in New Issue
Block a user