| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- plugins {
- kotlin("jvm") version "2.3.0"
- id("com.gradleup.shadow") version "8.3.0"
- id("xyz.jpenilla.run-paper") version "2.3.1"
- }
- group = "io.stellarfrontier"
- version = "1.0-SNAPSHOT"
- repositories {
- mavenCentral()
- maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") {
- name = "spigotmc-repo"
- }
- }
- dependencies {
- compileOnly("org.spigotmc:spigot-api:1.21.11-R0.1-SNAPSHOT")
- implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
- implementation("org.java-websocket:Java-WebSocket:1.5.3")
- implementation("com.squareup.okhttp3:okhttp:4.10.0")
- implementation("com.google.code.gson:gson:2.10.1")
- }
- tasks {
- runServer {
- // Configure the Minecraft version for our task.
- // This is the only required configuration besides applying the plugin.
- // Your plugin's jar (or shadowJar if present) will be used automatically.
- minecraftVersion("1.21")
- }
- }
- val targetJavaVersion = 21
- kotlin {
- jvmToolchain(targetJavaVersion)
- }
- tasks.build {
- dependsOn("shadowJar")
- }
- tasks.register<Copy>("installPlugin") {
- dependsOn("shadowJar")
- from(tasks.shadowJar.flatMap { it.archiveFile })
- into(project.file("../testserver/plugins"))
- }
- tasks.processResources {
- val props = mapOf("version" to version)
- inputs.properties(props)
- filteringCharset = "UTF-8"
- filesMatching("plugin.yml") {
- expand(props)
- }
- }
|