kompletně funkční plugin

This commit is contained in:
babymsp2k
2025-07-05 01:07:57 +02:00
parent 594ad6b0ec
commit d86a74f9bc
9 changed files with 526 additions and 56 deletions
+15 -8
View File
@@ -52,23 +52,30 @@ repositories {
}
}
maven {
name = 'sk89q-repo'
url = 'https://maven.enginehub.org/repo/'
repositories {
mavenCentral() // MUSÍ být první!
maven {
name = 'papermc-repo'
url = 'https://repo.papermc.io/repository/maven-public/'
}
maven {
name = 'sk89q-repo'
url = 'https://maven.enginehub.org/repo/'
}
maven {
name = 'placeholderapi'
url = 'https://repo.extendedclip.com/content/repositories/placeholderapi/'
}
}
mavenCentral()
}
dependencies {
compileOnly 'io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT'
compileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.3'
implementation 'io.papermc:paperlib:1.0.8'
// Použij starší stabilní verze kompatibilní s Paper 1.21
compileOnly 'com.sk89q.worldguard:worldguard-bukkit:7.0.9'
compileOnly 'com.sk89q.worldedit:worldedit-bukkit:7.2.15'
compileOnly 'me.clip:placeholderapi:2.11.6'
spotbugsPlugins 'com.h3xstream.findsecbugs:findsecbugs-plugin:1.14.0'
testCompileOnly 'com.github.spotbugs:spotbugs-annotations:4.9.3'
testImplementation 'io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT'