Moved command methods into own class

This commit is contained in:
Doc
2024-03-01 12:57:20 +01:00
parent 434918a178
commit 9441cff71d
4 changed files with 174 additions and 154 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id("java")
id("io.papermc.paperweight.userdev") version "1.5.10" // Check for new versions at https://plugins.gradle.org/plugin/io.papermc.paperweight.userdev
}
group = "dev.protron"
@@ -14,6 +15,7 @@ dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
paperweight.paperDevBundle("1.20.4-R0.1-SNAPSHOT")
implementation("org.xerial:sqlite-jdbc:3.42.0.0")
}