Combat_f/build.gradle.kts

39 lines
802 B
Plaintext
Raw Permalink Normal View History

2023-03-27 15:48:17 +00:00
plugins {
2024-06-08 12:54:56 +00:00
kotlin("jvm") version "2.0.0"
2024-03-11 13:12:59 +00:00
id("xyz.jpenilla.run-paper") version "2.2.3"
2024-01-14 09:50:01 +00:00
// id("io.papermc.paperweight.userdev") version "1.5.4"
2023-03-27 15:48:17 +00:00
}
2024-03-11 13:12:59 +00:00
group = "me.faiz"
version = "2.0.0"
2023-03-27 15:48:17 +00:00
repositories {
mavenCentral()
2024-01-14 09:50:01 +00:00
maven("https://repo.papermc.io/repository/maven-public/")
2023-03-27 15:48:17 +00:00
}
java {
2024-06-08 12:54:56 +00:00
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
2023-03-27 15:48:17 +00:00
}
dependencies {
testImplementation(kotlin("test"))
2024-06-08 12:54:56 +00:00
compileOnly("io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT")
implementation("io.github.monun:invfx-api:latest.release")
2024-01-14 09:50:01 +00:00
// paperweight.paperDevBundle("1.19.2-R0.1-SNAPSHOT")
2024-06-08 12:54:56 +00:00
// implementation("io.github.monun:kommand-api:3.1.7")
2023-03-27 15:48:17 +00:00
}
2024-03-11 13:12:59 +00:00
tasks {
runServer{
2024-06-08 12:54:56 +00:00
minecraftVersion("1.20.6")
2024-03-11 13:12:59 +00:00
}
}
2023-03-27 15:48:17 +00:00
tasks.test {
useJUnitPlatform()
}
kotlin {
2024-06-08 12:54:56 +00:00
jvmToolchain(21)
2023-03-27 15:48:17 +00:00
}