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
|
fancylibVersion=35
|
||||||
fancysitulaVersion=0.0.13
|
fancysitulaVersion=0.0.13
|
||||||
jdbVersion=1.0.0
|
jdbVersion=1.0.0
|
||||||
|
plugintestsVersion=1.0.0
|
||||||
|
|
||||||
org.gradle.parallel=true
|
org.gradle.parallel=true
|
||||||
org.gradle.caching=true
|
org.gradle.caching=true
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "de.oliver"
|
group = "de.oliver"
|
||||||
version = "1.0.0"
|
version = findProperty("plugintestsVersion") as String
|
||||||
description = "Library for defining and running tests in a Minecraft server environment"
|
description = "Library for defining and running tests in a Minecraft server environment"
|
||||||
|
|
||||||
java {
|
java {
|
||||||
@@ -53,9 +53,9 @@ tasks {
|
|||||||
}
|
}
|
||||||
publications {
|
publications {
|
||||||
create<MavenPublication>("maven") {
|
create<MavenPublication>("maven") {
|
||||||
groupId = project.group.toString()
|
groupId = "de.oliver"
|
||||||
artifactId = project.name
|
artifactId = "plugin-tests"
|
||||||
version = project.version.toString()
|
version = findProperty("plugintestsVersion") as String
|
||||||
from(project.components["java"])
|
from(project.components["java"])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user