mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
Update versioning for plugintests and adjust build configuration
This commit is contained in:
@@ -2,6 +2,7 @@ fancyhologramsVersion=2.4.2
|
||||
fancylibVersion=35
|
||||
fancysitulaVersion=0.0.13
|
||||
jdbVersion=1.0.0
|
||||
plugintestsVersion=1.0.0
|
||||
|
||||
org.gradle.parallel=true
|
||||
org.gradle.caching=true
|
||||
|
||||
@@ -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"])
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user