1
0
Fork 0

chore(deps): update

This commit is contained in:
ineanto 2025-09-06 11:00:05 +02:00
parent 5ab4824a42
commit 7918072e1e
Signed by: ineanto
GPG key ID: E511F9CAA2F9CE84
6 changed files with 96 additions and 15 deletions

View file

@ -1,10 +1,12 @@
plugins {
kotlin("jvm") version "2.0.0"
id("com.github.johnrengelman.shadow") version "7.1.2"
id("io.papermc.paperweight.userdev") version "1.7.1"
kotlin("jvm") version "2.2.10"
id("com.gradleup.shadow") version "9.1.0"
id("io.papermc.paperweight.userdev") version "2.0.0-beta.18"
id("xyz.jpenilla.run-paper") version "2.3.0"
}
val kotlin_version = "2.2.10"
group = "xyz.ineanto.dragon"
version = "1.1"
@ -17,20 +19,17 @@ repositories {
dependencies {
// Spigot
paperweight.paperDevBundle("1.21-R0.1-SNAPSHOT")
paperweight.paperDevBundle("1.21.8-R0.1-SNAPSHOT")
// Game Libraries
compileOnly("xyz.xenondevs.invui:invui:1.33")
compileOnly("xyz.xenondevs.invui:invui-kotlin:1.33")
compileOnly("xyz.xenondevs.invui:invui:1.46")
compileOnly("xyz.xenondevs.invui:invui-kotlin:1.46")
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:2.0.0")
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
// Commons IO
implementation("commons-io:commons-io:2.11.0")
}
@ -41,6 +40,6 @@ kotlin {
tasks {
runServer {
minecraftVersion("1.21")
minecraftVersion("1.21.8")
}
}