too many things, kinda forgor to push/commit
Some checks failed
Build / build (push) Successful in 3m43s
Format / formatting (push) Failing after 19s

This commit is contained in:
unurled 2024-10-11 12:29:44 +02:00
parent 897edf1d37
commit bb514f8a63
Signed by: unurled
GPG key ID: EFC5F5E709B47DDD
69 changed files with 1691 additions and 1256 deletions

View file

@ -2,7 +2,7 @@ import net.minecrell.pluginyml.bukkit.BukkitPluginDescription
plugins {
`java-library`
id("io.papermc.paperweight.userdev") version "1.7.2"
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"
}
@ -36,6 +36,10 @@ repositories {
name = "unurled"
url = uri("https://repo.unurled.me/releases")
}
maven {
name = "cubbossa"
url = uri("https://nexus.leonardbausenwein.de/repository/maven-releases/")
}
}
dependencies {
@ -47,9 +51,9 @@ dependencies {
paperLibrary("redis.clients", "jedis", redisVersion)
paperLibrary("com.github.retrooper", "packetevents-spigot", "2.4.0")
paperLibrary("com.github.retrooper", "packetevents-spigot", "2.5.0")
paperLibrary("me.unurled", "SR-Core", "0.1.0")
compileOnly("me.unurled:SR-Core:0.1.1")
}
java {
@ -106,7 +110,7 @@ paper {
"sr.resetadventure",
"sr.treasure.manage",
"sr.difficulty.*",
"sr.cutscene"
"sr.cutscene.*"
)
description = "Gives access to all Sacred Realms permissions."
}
@ -151,6 +155,10 @@ paper {
}
register("sr.cutscene") {
description = "Gives access to the cutscene command."
children = listOf(
"sr.cutscene.create",
"sr.cutscene.replay"
)
}
}
}