mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-14 19:34:54 -05:00
56 lines
1.6 KiB
Text
56 lines
1.6 KiB
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))
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
options.encoding = "UTF-8"
|
|
options.release.set(16)
|
|
}
|
|
|
|
if (name == "Paper-MojangAPI") {
|
|
return@subprojects
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo1.maven.org/maven2/")
|
|
maven("https://oss.sonatype.org/content/groups/public/")
|
|
maven("https://papermc.io/repo/repository/maven-public/")
|
|
maven("https://ci.emc.gs/nexus/content/groups/aikar/")
|
|
maven("https://repo.aikar.co/content/groups/aikar")
|
|
maven("https://repo.md-5.net/content/repositories/releases/")
|
|
maven("https://hub.spigotmc.org/nexus/content/groups/public/")
|
|
}
|
|
}
|
|
|
|
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"))
|
|
}
|
|
}
|
|
}
|