Update JDB versioning in build configuration and gradle properties

This commit is contained in:
Oliver
2025-03-14 18:05:31 +01:00
parent a7f36fcf7a
commit 6d8be3ace4
2 changed files with 5 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ plugins {
}
group = "de.oliver"
version = "1.0.0"
version = findProperty("jdbVersion") as String
description = "Library for storing JSON data locally"
java {
@@ -52,9 +52,9 @@ tasks {
}
publications {
create<MavenPublication>("maven") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
groupId = "de.oliver"
artifactId = "JDB"
version = findProperty("jdbVersion") as String
from(project.components["java"])
}
}