Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSoul24 committed Oct 27, 2024
1 parent f6bd853 commit fa51918
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
`java-library`
id("io.papermc.paperweight.userdev") version "1.7.2"
id("xyz.jpenilla.run-paper") version "2.3.0" // Adds runServer and runMojangMappedServer tasks for testing
id("io.papermc.paperweight.userdev") version "1.7.4"
id("xyz.jpenilla.run-paper") version "2.3.1" // Adds runServer and runMojangMappedServer tasks for testing
}

dependencies {
Expand Down Expand Up @@ -43,8 +43,8 @@ subprojects {
}

dependencies {
compileOnly(group = "org.jetbrains", name = "annotations", version = "24.1.0")
annotationProcessor("org.jetbrains:annotations:24.1.0")
compileOnly(group = "org.jetbrains", name = "annotations", version = "26.0.1")
annotationProcessor("org.jetbrains:annotations:26.0.1")
}
}

Expand Down Expand Up @@ -136,8 +136,8 @@ configure(subprojects.filter {
listOf("vane-bedtime", "vane-portals", "vane-regions").contains(it.name)
}) {
dependencies {
implementation(group = "us.dynmap", name = "DynmapCoreAPI", version = "3.7-beta-6")
implementation(group = "de.bluecolored.bluemap", name = "BlueMapAPI", version = "2.7.2")
implementation(group = "us.dynmap", name = "DynmapCoreAPI", version = "3.7-beta-7")
implementation(group = "de.bluecolored.bluemap", name = "BlueMapAPI", version = "2.7.3")
}
}

Expand Down
6 changes: 3 additions & 3 deletions vane-core/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.security.MessageDigest

plugins {
id("io.github.goooler.shadow") version "8.1.7"
id("io.github.goooler.shadow") version "8.1.8"
id("net.kyori.blossom") version "2.1.0" // Text replacement for version numbers
}

Expand All @@ -15,8 +15,8 @@ sourceSets {
}
}
dependencies {
implementation(group = "org.bstats", name = "bstats-base", version = "3.0.2")
implementation(group = "org.bstats", name = "bstats-bukkit", version = "3.0.2")
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")
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
@@ -1,5 +1,5 @@
plugins {
id("io.github.goooler.shadow") version "8.1.7"
id("io.github.goooler.shadow") version "8.1.8"
}

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

Expand All @@ -8,10 +8,10 @@ blossom {
}

dependencies {
implementation(group = "com.electronwill.night-config", name = "toml", version = "3.8.0")
implementation(group = "org.slf4j", name = "slf4j-api", version = "2.0.13")
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 = "20200518")
compileOnly(group = "org.json", name = "json", version = "20240303")
}

java {
Expand Down
2 changes: 1 addition & 1 deletion vane-regions/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("io.github.goooler.shadow") version "8.1.7"
id("io.github.goooler.shadow") version "8.1.8"
}

dependencies {
Expand Down
10 changes: 5 additions & 5 deletions vane-velocity/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id("io.github.goooler.shadow") version "8.1.7"
id("io.github.goooler.shadow") version "8.1.8"
}

dependencies {
compileOnly(fileTree(mapOf("dir" to "external", "include" to listOf("*.jar"))))
implementation(group = "com.velocitypowered", name = "velocity-api", version = "3.3.0-SNAPSHOT")
annotationProcessor(group = "com.velocitypowered", name = "velocity-api", version = "3.3.0-SNAPSHOT")
implementation(group = "org.bstats", name = "bstats-velocity", version = "3.0.2")
implementation(group = "org.bstats", name = "bstats-base", version = "3.0.2")
implementation(group = "com.velocitypowered", name = "velocity-api", version = "3.4.0-SNAPSHOT")
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(rootProject.project(":vane-core"))
implementation(rootProject.project(":vane-proxy-core"))
Expand Down

0 comments on commit fa51918

Please sign in to comment.