Skip to content

Commit

Permalink
Dropped 1.17 support and completely depend on native adventure
Browse files Browse the repository at this point in the history
  • Loading branch information
ChimpGamer committed Dec 28, 2024
1 parent eafbe6a commit d4f6de3
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 269 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ run-paper = "2.3.0"
pluginyml = "0.6.0"

# Platforms
minecraft = "1.17.1-R0.1-SNAPSHOT"
minecraft = "1.18.2-R0.1-SNAPSHOT"

# Libraries
cloud = "1.8.4"
Expand Down
10 changes: 1 addition & 9 deletions hyperverse-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,7 @@ dependencies {
implementation(libs.cloudPaper)
implementation(libs.cloudMinecraftExtras)

// TODO: Remove and use native versions.
implementation("net.kyori:adventure-text-minimessage:4.17.0")

implementation(projects.hyperverseNmsUnsupported)
runtimeOnly(project(":hyperverse-nms-1-17")) {
targetConfiguration = "reobf"
}
runtimeOnly(project(":hyperverse-nms-1-18")) {
targetConfiguration = "reobf"
}
Expand Down Expand Up @@ -73,7 +67,7 @@ bukkit {
authors = listOf("Citymonstret", "andrewandy")
main = "org.incendo.hyperverse.Hyperverse"
softDepend = listOf("Essentials", "Multiverse", "MyWorlds")
apiVersion = "1.17"
apiVersion = "1.18"
permissions {
mapOf(
"worlds" to "Allows players to use the Hyperverse command",
Expand Down Expand Up @@ -120,7 +114,6 @@ tasks {
shadowJar {
minimize {
exclude(project(":hyperverse-nms-unsupported"))
exclude(project(":hyperverse-nms-1-17"))
exclude(project(":hyperverse-nms-1-18"))
exclude(project(":hyperverse-nms-1-19"))
exclude(project(":hyperverse-nms-1-20"))
Expand All @@ -143,7 +136,6 @@ tasks {
relocate("co.aikar.taskchain", "org.incendo.hyperverse.libs.taskchain")
relocate("co.aikar.util", "org.incendo.hyperverse.libs.aikar.util")
relocate("net.jodah.expiringmap", "org.incendo.hyperverse.libs.expiringmap")
relocate("net.kyori.adventure.text.minimessage", "org.incendo.hyperverse.libs.minimessage")
relocate("cloud.commandframework", "org.incendo.hyperverse.libs.cloud")
relocate("org.spongepowered.configurate", "org.incendo.hyperverse.libs.configurate")
relocate("io.leangen.geantyref", "org.incendo.hyperverse.libs.geantyref")
Expand Down
20 changes: 0 additions & 20 deletions hyperverse-nms-1-17/build.gradle.kts

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ include(":hyperverse-nms-common")
include(":hyperverse-core")

include(":hyperverse-nms-unsupported")
include(":hyperverse-nms-1-17")
include(":hyperverse-nms-1-18")
include(":hyperverse-nms-1-19")
include(":hyperverse-nms-1-20")
Expand Down

0 comments on commit d4f6de3

Please sign in to comment.