1
0
Fork 0

refactor: world management

This commit is contained in:
ineanto 2024-07-08 21:20:16 +02:00
parent 5bfdaacefc
commit 6e796febe4
Signed by: ineanto
GPG key ID: E511F9CAA2F9CE84
16 changed files with 152 additions and 232 deletions

View file

@ -1,32 +1,34 @@
plugins {
kotlin("jvm") version "1.9.24"
kotlin("jvm") version "2.0.0"
id("com.github.johnrengelman.shadow") version "7.1.2"
id("io.papermc.paperweight.userdev") version "1.7.1"
id("xyz.jpenilla.run-paper") version "2.3.0"
}
group = "xyz.ineanto.dragon"
version = "1.0-SNAPSHOT"
version = "1.1"
repositories {
mavenLocal()
gradlePluginPortal()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://oss.sonatype.org/content/repositories/snapshots")
maven("https://oss.sonatype.org/content/repositories/central")
maven("https://maven.enginehub.org/repo")
maven("https://repo.xenondevs.xyz/releases")
}
dependencies {
// Spigot
paperweight.paperDevBundle("1.20.6-R0.1-SNAPSHOT")
// WorldEdit
compileOnly("com.sk89q.worldedit:worldedit-core:7.3.0-SNAPSHOT")
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.3.0-SNAPSHOT")
paperweight.paperDevBundle("1.21-R0.1-SNAPSHOT")
// Game Libraries
implementation("xyz.xenondevs.invui:invui:1.33")
implementation("ru.brikster:glyphs-api:1.1.0")
implementation("ru.brikster:glyphs-resources:1.1.0")
implementation("team.unnamed:creative-api:1.7.2")
// Serializer for Minecraft format (ZIP / Folder)
implementation("team.unnamed:creative-serializer-minecraft:1.7.2")
// Stdlib
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.24")
// InvUI
implementation("xyz.xenondevs.invui:invui:1.30")
implementation("org.jetbrains.kotlin:kotlin-stdlib:2.0.0")
// Commons IO
implementation("commons-io:commons-io:2.11.0")
}
@ -39,4 +41,8 @@ tasks {
assemble {
dependsOn(reobfJar)
}
runServer {
minecraftVersion("1.21")
}
}