mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
Update versioning for FancyHolograms and FancyLib in build configuration
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
fancyhologramsVersion=2.4.2
|
||||
fancylibVersion=35
|
||||
|
||||
org.gradle.parallel=true
|
||||
org.gradle.caching=true
|
||||
|
||||
@@ -5,7 +5,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = "de.oliver"
|
||||
version = "35"
|
||||
version = findProperty("fancylibVersion") as String
|
||||
description = "Library for all Fancy plugins"
|
||||
|
||||
java {
|
||||
@@ -57,9 +57,9 @@ tasks {
|
||||
}
|
||||
publications {
|
||||
create<MavenPublication>("maven") {
|
||||
groupId = project.group.toString()
|
||||
artifactId = project.name
|
||||
version = project.version.toString()
|
||||
groupId = "de.oliver"
|
||||
artifactId = "FancyLib"
|
||||
version = findProperty("fancylibVersion") as String
|
||||
from(project.components["java"])
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ tasks {
|
||||
publications {
|
||||
create<MavenPublication>("maven") {
|
||||
groupId = "de.oliver"
|
||||
artifactId = "fancyholograms"
|
||||
artifactId = "FancyHolograms"
|
||||
version = findProperty("fancyhologramsVersion") as String
|
||||
from(project.components["java"])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user