fix: switch to 2.0 invui and update of minecraft version
Some checks failed
Format / formatting (push) Failing after 47s
Build / build (push) Failing after 10m31s

This commit is contained in:
unurled 2024-12-31 01:30:31 +01:00
parent 41ae6a2572
commit b157836887
Signed by: unurled
GPG key ID: EFC5F5E709B47DDD
31 changed files with 233 additions and 465 deletions

View file

@ -2,12 +2,11 @@ import net.minecrell.pluginyml.bukkit.BukkitPluginDescription
plugins {
`java-library`
id("io.papermc.paperweight.userdev") version "1.7.3"
id("org.sonarqube") version "5.1.0.4882"
id("net.minecrell.plugin-yml.paper") version "0.6.0"
id("io.papermc.paperweight.userdev") version "2.0.0-beta.10"
id("org.sonarqube") version "6.0.1.5171"
id("de.eldoria.plugin-yml.paper") version "0.6.0"
}
// from 1.20.5+ upward, spigot is not supported
paperweight.reobfArtifactConfiguration =
io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
@ -15,13 +14,14 @@ group = "me.unurled.sacredrealms"
version = "0.1.0"
description = "The main SR plugin."
val mcVersion = "1.21.1-R0.1-SNAPSHOT"
val mcVersion = "1.21.4-R0.1-SNAPSHOT"
val redisVersion = "5.2.0-beta4"
val invuiVersion = "1.36"
val invuiVersion = "2.0.0-alpha.6"
val gsonVersion = "2.11.0"
val srcoreVersion = "0.1.2"
val srcoreVersion = "0.2.0"
val packeteventsVersion = "2.7.0"
val javaVersion = 21
val javaVersion = 23
repositories {
mavenCentral()
@ -52,7 +52,7 @@ dependencies {
paperLibrary("redis.clients", "jedis", redisVersion)
paperLibrary("com.github.retrooper", "packetevents-spigot", "2.5.0")
paperLibrary("com.github.retrooper", "packetevents-spigot", packeteventsVersion)
compileOnly("me.unurled:SR-Core:${srcoreVersion}")
}