Skip to content

Commit

Permalink
Bump all dependencies for 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
booky10 committed Sep 25, 2024
1 parent 43daead commit 6243751
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ dependencies {
java {
withSourcesJar()
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
vendor.set(JvmVendorSpec.ADOPTIUM)
languageVersion = JavaLanguageVersion.of(21)
vendor = JvmVendorSpec.ADOPTIUM
}
}

Expand All @@ -68,7 +68,7 @@ bukkit {

tasks {
runServer {
minecraftVersion("1.20.2")
minecraftVersion("1.21.1")

pluginJars.from(plugin.resolve())
downloadPlugins {
Expand All @@ -80,7 +80,7 @@ tasks {
)

// not available on modrinth, github or hangar
url("https://download.luckperms.net/1515/bukkit/loader/LuckPerms-Bukkit-5.4.102.jar")
url("https://download.luckperms.net/1556/bukkit/loader/LuckPerms-Bukkit-5.4.141.jar")
}
}

Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
pluginyml = "0.6.0"
runtask = "2.2.0"
runtask = "2.3.1"
shadow = "8.3.0"

paper = "1.20.2-R0.1-SNAPSHOT"
paper = "1.21.1-R0.1-SNAPSHOT"
luckperms-api = "5.4"
bstats = "3.0.2"

Expand All @@ -12,7 +12,7 @@ launchplates = "1.0.1-SNAPSHOT"

caffeine = "3.1.8"

commandapi = "9.3.0"
commandapi = "9.5.3"
debuggery = "1.5.1"

[plugins]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
import org.bukkit.event.Listener;
import org.bukkit.event.block.Action;
import org.bukkit.event.block.BlockBreakEvent;
import org.bukkit.event.entity.EntityDismountEvent;
import org.bukkit.event.player.PlayerInteractEvent;
import org.bukkit.persistence.PersistentDataContainer;
import org.bukkit.persistence.PersistentDataType;
import org.bukkit.util.BoundingBox;
import org.bukkit.util.Vector;
import org.spigotmc.event.entity.EntityDismountEvent;

import java.util.Collection;
import java.util.Objects;
Expand Down

0 comments on commit 6243751

Please sign in to comment.