mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-25 20:16:19 +01:00
18 lines
353 B
Plaintext
18 lines
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)
|
||
|
}
|
||
|
}
|