mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-14 19:34:54 -05:00
34 lines
906 B
Text
34 lines
906 B
Text
plugins {
|
|
java
|
|
id("com.github.johnrengelman.shadow") version "7.0.0" apply false
|
|
id("io.papermc.paperweight.patcher") version "1.0.0-LOCAL-SNAPSHOT"
|
|
}
|
|
|
|
group = "io.papermc.paper"
|
|
version = providers.gradleProperty("projectVersion").forUseAtConfigurationTime().get()
|
|
|
|
allprojects {
|
|
apply(plugin = "java")
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(16))
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(gradleApi())
|
|
}
|
|
|
|
paperweight {
|
|
usePaperUpstream(providers.gradleProperty("paperRef")) {
|
|
withPaperPatcher {
|
|
apiPatchDir.set(layout.projectDirectory.dir("patches/api"))
|
|
apiOutputDir.set(layout.projectDirectory.dir("ForkTest-API"))
|
|
|
|
serverPatchDir.set(layout.projectDirectory.dir("patches/server"))
|
|
serverOutputDir.set(layout.projectDirectory.dir("ForkTest-Server"))
|
|
}
|
|
}
|
|
}
|