This commit is contained in:
2025-07-09 01:52:07 -07:00
parent 14bbf34080
commit c5ac19754d
3 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ plugins {
}
group = "xyz.lncvrt"
version = "1.0.0"
version = "1.0.1"
repositories {
mavenCentral()
@@ -19,11 +19,11 @@ repositories {
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.21.7-R0.1-SNAPSHOT")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
}
val targetJavaVersion = 17
val targetJavaVersion = 21
kotlin {
jvmToolchain(targetJavaVersion)
}
@@ -51,13 +51,13 @@ tasks {
val props = mapOf("version" to version)
inputs.properties(props)
filteringCharset = "UTF-8"
filesMatching("plugin.yml") {
filesMatching("paper-plugin.yml") {
expand(props)
}
}
runServer {
minecraftVersion("1.20.1")
minecraftVersion("1.21.7")
}
}