Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
18 Zeilen
353 B
Plaintext
18 Zeilen
353 B
Plaintext
version = "1.0.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
maven("https://libraries.minecraft.net")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":Paper-API"))
|
|
compileOnly(project(":Paper-MojangAPI"))
|
|
}
|
|
|
|
tasks.processResources {
|
|
inputs.property("version", project.version)
|
|
filesMatching("plugin.yml") {
|
|
expand("version" to project.version)
|
|
}
|
|
}
|