Skip to content

Commit

Permalink
fix(build): remove minestom from build
Browse files Browse the repository at this point in the history
In-tree Minestom support will be removed until further notice.
This is due to the current state of the Minestom project being
unmaintained. Minestom-CE is a viable alternative to build against,
but I currently don't have time to look into it.
  • Loading branch information
Cubxity committed Jan 3, 2024
1 parent 9afe0ab commit 71f4c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ include(modulePrefix + "common")
include(modulePrefix + "core")

include(modulePrefix + platformPrefix + "bukkit")
include(modulePrefix + platformPrefix + "minestom")
//include(modulePrefix + platformPrefix + "minestom")
include(modulePrefix + platformPrefix + "velocity")
include(modulePrefix + platformPrefix + "bungee")
include(modulePrefix + platformPrefix + "fabric")
Expand All @@ -40,7 +40,7 @@ project(modulePrefix + "core").projectDir = File(rootDir, "core")

val platformsDir = File(rootDir, "platforms")
project(modulePrefix + platformPrefix + "bukkit").projectDir = File(platformsDir, "bukkit")
project(modulePrefix + platformPrefix + "minestom").projectDir = File(platformsDir, "minestom")
//project(modulePrefix + platformPrefix + "minestom").projectDir = File(platformsDir, "minestom")
project(modulePrefix + platformPrefix + "velocity").projectDir = File(platformsDir, "velocity")
project(modulePrefix + platformPrefix + "bungee").projectDir = File(platformsDir, "bungee")
project(modulePrefix + platformPrefix + "fabric").projectDir = File(platformsDir, "fabric")
Expand Down

0 comments on commit 71f4c28

Please sign in to comment.