This commit is contained in:
kento2 2026-06-27 22:56:03 +02:00
parent 1b9ff95d40
commit 6087b98705
14 changed files with 300 additions and 93 deletions

View file

@ -1,6 +1,9 @@
plugins {
id("java")
id("com.gradleup.shadow") version "9.2.0"
id("de.kentoj.scrow.scrow-repository")
id("de.kentoj.scrow.base-dependencies")
id("de.kentoj.scrow.database")
}
group = "de.kentoj.scrow"
@ -15,14 +18,12 @@ repositories {
dependencies {
implementation(project(":core-velocity-api"))
// https://docs.papermc.io/velocity/dev/creating-your-first-plugin/
annotationProcessor("com.velocitypowered:velocity-api:3.5.0-SNAPSHOT")
// https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine
implementation("com.github.ben-manes.caffeine:caffeine:3.2.4")
// http://forge.kentoj.de/scrow/-/packages/maven/de.kentoj.scrow:kencommandapi-velocity
implementation("de.kentoj.scrow:kencommandapi-velocity")
}
@ -45,6 +46,7 @@ val generateBuildInfo by tasks.registering {
)
}
}
sourceSets.main {
java.srcDir(generateBuildInfo)
}