mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-05 23:33:36 +00:00
Update JDB versioning in build configuration and gradle properties
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
fancyhologramsVersion=2.4.2
|
||||
fancylibVersion=35
|
||||
jdbVersion=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("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"])
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user