add guild databasing and caching + guild creation and information cmds

This commit is contained in:
Taah
2022-05-05 19:28:39 -07:00
parent 21ddd9d361
commit 2398d44074
16 changed files with 545 additions and 66 deletions

View File

@ -19,12 +19,14 @@ dependencies {
compileOnly("org.projectlombok:lombok:1.18.22")
annotationProcessor("org.projectlombok:lombok:1.18.22")
compileOnly("io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT")
compileOnly("dev.plex:Plex:0.9")
compileOnly("dev.plex:server:1.1-SNAPSHOT")
compileOnly("dev.morphia.morphia:morphia-core:2.2.6")
compileOnly("org.json:json:20220320")
}
group = "dev.plex"
version = "1.0"
description = "ExampleModule"
description = "The guilds module for Plex"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
@ -39,7 +41,7 @@ publishing {
}
tasks.getByName<Jar>("jar") {
archiveBaseName.set("Plex-ExampleModule")
archiveBaseName.set("Plex-Guilds")
archiveVersion.set("")
}