feat: pizdec

This commit is contained in:
2026-08-02 22:21:03 +03:00
parent ef128cc08d
commit de96bd314f
80 changed files with 4121 additions and 1431 deletions

13
build.gradle Normal file → Executable file
View File

@@ -3,7 +3,7 @@ plugins {
}
group = 'org.blz'
version = '1.21.11'
version = '1.3+26.1.2'
repositories {
mavenCentral()
@@ -14,23 +14,24 @@ repositories {
}
dependencies {
compileOnly 'io.papermc.paper:paper-api:1.21.11-R0.1-SNAPSHOT'
compileOnly 'net.luckperms:api:5.4'
compileOnly 'com.google.code.gson:gson:2.10.1'
compileOnly 'io.papermc.paper:paper-api:26.1.2.build.74-stable'
compileOnly 'net.luckperms:api:5.5'
compileOnly 'com.google.code.gson:gson:2.13.2'
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
toolchain.languageVersion.set(JavaLanguageVersion.of(25))
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs.addAll(['-Xlint:deprecation', '-Xlint:unchecked'])
}
processResources {
def props = [version: version]
inputs.properties props
filteringCharset 'UTF-8'
filteringCharset = 'UTF-8'
filesMatching('plugin.yml') {
expand props
}