feat: entire fucking database base and team features and prefixes and shit i worked on this for like 7 hours straight this night i want to kms i need SLEEEEEEP

This commit is contained in:
hexlocation 2025-04-19 05:57:43 +02:00
parent 044a0d674a
commit 130e6de1d1
19 changed files with 541 additions and 9 deletions

View file

@ -3,7 +3,7 @@ version = "0.1.0"
plugins {
java
id("com.github.johnrengelman.shadow") version "7.1.2"
id("com.gradleup.shadow") version "8.3.6"
id("de.eldoria.plugin-yml.paper") version "0.7.1"
}
@ -21,15 +21,20 @@ paper {
apiVersion = "1.21"
}
tasks.withType<Jar> {
val isDebug = providers.gradleProperty("isDebug")
if (isDebug.isPresent()) {
destinationDirectory.set(file(isDebug))
tasks {
register<Copy>("copyToServer") {
from(shadowJar)
destinationDir = File("server/plugins")
}
build {
dependsOn(shadowJar)
}
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
implementation("com.j256.ormlite", "ormlite-jdbc", "6.1")
implementation("org.postgresql", "postgresql", "42.7.5")
library("com.google.code.gson", "gson", "2.10.1") // All platform plugins
}