initial commit

This commit is contained in:
2025-10-21 21:03:47 +01:00
commit 6380d62968
13 changed files with 457 additions and 0 deletions

25
build.gradle.kts Normal file
View File

@@ -0,0 +1,25 @@
plugins {
`java-library`
}
version = project.extra["plugin_version"] as String
group = project.extra["plugin_group"] as String
base.archivesName = project.extra["plugin_base_name"] as String
repositories {
mavenCentral()
maven {
url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
}
}
dependencies {
compileOnly("org.spigotmc:spigot-api:1.21.10-R0.1-SNAPSHOT")
implementation("net.kyori:adventure-api:4.25.0")
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}