Paper/paper-test-plugin/build.gradle.kts

19 lines
447 B
Plaintext
Raw Normal View History

2021-07-09 12:04:33 +02:00
version = "1.0.0-SNAPSHOT"
dependencies {
2021-11-26 12:31:59 +01:00
compileOnly(project(":paper-api"))
2021-07-09 12:04:33 +02:00
}
tasks.processResources {
2022-02-21 21:44:17 +01:00
val apiVersion = rootProject.providers.gradleProperty("mcVersion").get()
.split(".", "-").take(2).joinToString(".")
val props = mapOf(
"version" to project.version,
2023-06-09 04:45:48 +02:00
"apiversion" to "\"$apiVersion\"",
)
inputs.properties(props)
2023-02-19 15:57:10 +01:00
filesMatching("paper-plugin.yml") {
expand(props)
2021-07-09 12:04:33 +02:00
}
}