Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSoul24 committed Jan 13, 2025
1 parent bc34410 commit a8c2dd5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
3 changes: 2 additions & 1 deletion vane-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ sourceSets {
}
}
}

dependencies {
implementation(group = "org.bstats", name = "bstats-base", version = "3.1.0")
implementation(group = "org.bstats", name = "bstats-bukkit", version = "3.1.0")
implementation(group = "org.reflections", name = "reflections", version = "0.10.2")
api(group = "org.json", name = "json", version = "20240303")
api(group = "org.json", name = "json", version = "20250107")
implementation(project(":vane-annotations"))
}

Expand Down
2 changes: 1 addition & 1 deletion vane-portals/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

dependencies {
compileOnly(group = "org.json", name = "json", version = "20240303")
compileOnly(group = "org.json", name = "json", version = "20250107")
}

tasks {
Expand Down
14 changes: 10 additions & 4 deletions vane-proxy-core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
plugins {
id("io.github.goooler.shadow") version "8.1.8"
id("net.kyori.blossom") version "1.2.0"
id("net.kyori.blossom") version "2.1.0"
}

blossom {
replaceToken("\$VERSION", project.version)
sourceSets {
main {
blossom {
javaSources {
property("\$VERSION", project.version.toString())
}
}
}
}

dependencies {
implementation(group = "com.electronwill.night-config", name = "toml", version = "3.8.1")
implementation(group = "org.slf4j", name = "slf4j-api", version = "2.0.16")
implementation(rootProject.project(":vane-core"))
compileOnly(group = "org.json", name = "json", version = "20240303")
compileOnly(group = "org.json", name = "json", version = "20250107")
}

java {
Expand Down
2 changes: 1 addition & 1 deletion vane-regions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
dependencies {
implementation(project(":vane-portals"))
compileOnly(group = "com.github.MilkBowl", name = "VaultAPI", version = "1.7.1")
compileOnly(group = "org.json", name = "json", version = "20240303")
compileOnly(group = "org.json", name = "json", version = "20250107")
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion vane-velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
annotationProcessor(group = "com.velocitypowered", name = "velocity-api", version = "3.4.0-SNAPSHOT")
implementation(group = "org.bstats", name = "bstats-velocity", version = "3.1.0")
implementation(group = "org.bstats", name = "bstats-base", version = "3.1.0")
implementation(group = "org.json", name = "json", version = "20240303")
implementation(group = "org.json", name = "json", version = "20250107")
implementation(rootProject.project(":vane-core"))
implementation(rootProject.project(":vane-proxy-core"))
}
Expand Down

0 comments on commit a8c2dd5

Please sign in to comment.