Update versioning for plugintests and adjust build configuration

This commit is contained in:
Oliver
2025-03-14 18:10:03 +01:00
parent c35c00efd2
commit 7afc0715ca
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("plugintestsVersion") as String
description = "Library for defining and running tests in a Minecraft server environment"
java {
@@ -53,9 +53,9 @@ tasks {
}
publications {
create<MavenPublication>("maven") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
groupId = "de.oliver"
artifactId = "plugin-tests"
version = findProperty("plugintestsVersion") as String
from(project.components["java"])
}
}