mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-04 09:50:03 +01:00
24 lines
542 B
Plaintext
24 lines
542 B
Plaintext
version = "1.0.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
maven("https://libraries.minecraft.net")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":paper-api"))
|
|
compileOnly(project(":paper-mojangapi"))
|
|
}
|
|
|
|
tasks.processResources {
|
|
val apiVersion = rootProject.providers.gradleProperty("mcVersion").get()
|
|
.split(".", "-").take(2).joinToString(".")
|
|
val props = mapOf(
|
|
"version" to project.version,
|
|
"apiversion" to apiVersion,
|
|
)
|
|
inputs.properties(props)
|
|
filesMatching("plugin.yml") {
|
|
expand(props)
|
|
}
|
|
}
|