2021-08-25 00:06:30 -04:00
|
|
|
import io.papermc.paperweight.util.constants.*
|
|
|
|
|
2021-06-12 08:09:34 -04:00
|
|
|
plugins {
|
|
|
|
java
|
2021-08-25 00:06:30 -04:00
|
|
|
`maven-publish`
|
2022-01-27 15:24:04 -05:00
|
|
|
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
|
2022-03-13 06:52:24 -04:00
|
|
|
id("io.papermc.paperweight.patcher") version "1.2.0"
|
2021-06-12 08:09:34 -04:00
|
|
|
}
|
|
|
|
|
2022-04-11 02:39:25 -04:00
|
|
|
val spigotDecompiler: Configuration by configurations.creating
|
|
|
|
|
2021-06-13 00:44:00 -04:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2021-06-16 02:28:10 -04:00
|
|
|
maven("https://papermc.io/repo/repository/maven-public/") {
|
2022-04-11 02:39:25 -04:00
|
|
|
content {
|
|
|
|
onlyForConfigurations(
|
|
|
|
configurations.paperclip.name,
|
|
|
|
spigotDecompiler.name,
|
|
|
|
)
|
|
|
|
}
|
2021-06-13 00:44:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-01-27 15:24:04 -05:00
|
|
|
remapper("net.fabricmc:tiny-remapper:0.8.1:fat")
|
2021-12-02 03:00:38 -05:00
|
|
|
decompiler("net.minecraftforge:forgeflower:1.5.498.22")
|
2022-04-11 02:39:25 -04:00
|
|
|
spigotDecompiler("io.papermc:patched-spigot-fernflower:0.1+build.4")
|
2022-03-20 08:32:37 -04:00
|
|
|
paperclip("io.papermc:paperclip:2.0.1")
|
2021-06-13 00:44:00 -04:00
|
|
|
}
|
|
|
|
|
2021-08-25 00:06:30 -04:00
|
|
|
allprojects {
|
2021-06-12 08:09:34 -04:00
|
|
|
apply(plugin = "java")
|
2021-08-25 00:06:30 -04:00
|
|
|
apply(plugin = "maven-publish")
|
2021-06-12 08:09:34 -04:00
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2021-12-02 03:00:38 -05:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
2021-06-12 08:09:34 -04:00
|
|
|
}
|
|
|
|
}
|
2021-08-25 00:06:30 -04:00
|
|
|
}
|
2021-06-12 08:09:34 -04:00
|
|
|
|
2021-08-25 00:06:30 -04:00
|
|
|
subprojects {
|
|
|
|
tasks.withType<JavaCompile> {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
2021-12-02 03:00:38 -05:00
|
|
|
options.release.set(17)
|
2021-06-12 08:20:45 -04:00
|
|
|
}
|
2021-08-25 00:06:30 -04:00
|
|
|
tasks.withType<Javadoc> {
|
|
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
}
|
|
|
|
tasks.withType<ProcessResources> {
|
|
|
|
filteringCharset = Charsets.UTF_8.name()
|
|
|
|
}
|
2021-06-12 08:20:45 -04:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://papermc.io/repo/repository/maven-public/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 08:09:34 -04:00
|
|
|
paperweight {
|
2022-03-12 20:39:38 -05:00
|
|
|
serverProject.set(project(":Scissors-Server"))
|
2021-06-12 14:04:04 -04:00
|
|
|
|
2021-10-02 21:46:57 -04:00
|
|
|
remapRepo.set("https://maven.fabricmc.net/")
|
2021-08-25 00:06:30 -04:00
|
|
|
decompileRepo.set("https://files.minecraftforge.net/maven/")
|
|
|
|
|
2021-06-12 08:09:34 -04:00
|
|
|
usePaperUpstream(providers.gradleProperty("paperRef")) {
|
|
|
|
withPaperPatcher {
|
|
|
|
apiPatchDir.set(layout.projectDirectory.dir("patches/api"))
|
2022-03-12 20:39:38 -05:00
|
|
|
apiOutputDir.set(layout.projectDirectory.dir("Scissors-API"))
|
2021-06-12 08:09:34 -04:00
|
|
|
|
|
|
|
serverPatchDir.set(layout.projectDirectory.dir("patches/server"))
|
2022-03-12 20:39:38 -05:00
|
|
|
serverOutputDir.set(layout.projectDirectory.dir("Scissors-Server"))
|
2021-08-25 00:06:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|