Paper/build.gradle.kts

274 lines
8.3 KiB
Plaintext
Raw Normal View History

2023-12-06 04:35:33 +01:00
import io.papermc.paperweight.tasks.BaseTask
import io.papermc.paperweight.util.*
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
2023-12-06 04:35:33 +01:00
import java.io.ByteArrayOutputStream
import java.nio.file.Path
2023-12-06 05:46:41 +01:00
import java.util.regex.Pattern
2023-12-06 04:35:33 +01:00
import kotlin.io.path.*
plugins {
java
2021-08-18 00:11:04 +02:00
`maven-publish`
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
2023-12-08 19:12:59 +01:00
id("io.papermc.paperweight.core") version "1.5.11"
}
allprojects {
apply(plugin = "java")
2021-08-18 00:11:04 +02:00
apply(plugin = "maven-publish")
java {
toolchain {
2023-12-06 19:48:37 +01:00
languageVersion = JavaLanguageVersion.of(17)
}
}
}
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
subprojects {
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
2023-12-06 19:48:37 +01:00
options.release = 17
}
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()
}
tasks.withType<ProcessResources> {
filteringCharset = Charsets.UTF_8.name()
}
tasks.withType<Test> {
testLogging {
showStackTraces = true
exceptionFormat = TestExceptionFormat.FULL
events(TestLogEvent.STANDARD_OUT)
}
}
repositories {
mavenCentral()
maven(paperMavenPublicUrl)
}
}
2022-04-07 18:36:19 +02:00
val spigotDecompiler: Configuration by configurations.creating
repositories {
2021-06-13 05:18:50 +02:00
mavenCentral()
maven(paperMavenPublicUrl) {
2022-04-07 18:36:19 +02:00
content {
onlyForConfigurations(
configurations.paperclip.name,
spigotDecompiler.name,
)
}
}
}
dependencies {
2023-12-07 21:27:28 +01:00
paramMappings("net.fabricmc:yarn:1.20.4+build.1:mergedv2")
remapper("net.fabricmc:tiny-remapper:0.8.10:fat")
decompiler("net.minecraftforge:forgeflower:2.0.627.2")
2022-06-07 18:52:56 +02:00
spigotDecompiler("io.papermc:patched-spigot-fernflower:0.1+build.6")
2023-03-20 06:18:33 +01:00
paperclip("io.papermc:paperclip:3.0.3")
}
paperweight {
2023-12-06 19:48:37 +01:00
minecraftVersion = providers.gradleProperty("mcVersion")
serverProject = project(":paper-server")
2023-12-06 19:48:37 +01:00
paramMappingsRepo = paperMavenPublicUrl
remapRepo = paperMavenPublicUrl
decompileRepo = paperMavenPublicUrl
2022-04-07 18:36:19 +02:00
craftBukkit {
2023-12-06 19:48:37 +01:00
fernFlowerJar = layout.file(spigotDecompiler.elements.map { it.single().asFile })
2022-04-07 18:36:19 +02:00
}
paper {
2023-12-06 19:48:37 +01:00
spigotApiPatchDir = layout.projectDirectory.dir("patches/api")
spigotServerPatchDir = layout.projectDirectory.dir("patches/server")
2021-06-11 14:02:28 +02:00
2023-12-06 19:48:37 +01:00
mappingsPatch = layout.projectDirectory.file("build-data/mappings-patch.tiny")
reobfMappingsPatch = layout.projectDirectory.file("build-data/reobf-mappings-patch.tiny")
Updated Upstream (Bukkit/CraftBukkit/Spigot) (#10164) Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 63c208dd Remove no longer used import 70be76c7 PR-958: Further clarify deprecation of TAG_CONTAINER_ARRAY ae21f4ac PR-955: Add methods to place structures with block/entity transformers e3d960f2 SPIGOT-7547: Remark that Damageable#setAbsorptionAmount() is capped to a specific value b125516c Fix typo in RecipeChoice.ExactChoice docs 309497c1 Add EntityMountEvent and EntityDismount Event 2fd45ae3 Improve ItemFactory#enchantItem consistency 2b198268 PR-933: Define native persistent data types for lists CraftBukkit Changes: 771182f70 PR-1327: Add methods to place structures with block/entity transformers e41ad4c82 SPIGOT-7567: SpawnReason for SNOWMAN is reported as BUILD_IRONGOLEM 76931e8bd Add EntityMountEvent and EntityDismount Event 9b29b21c7 PR-1183: Better handle lambda expression and renaming of classes in Commodore 1462ebe85 Reformat Commodore.java 9fde4c037 PR-1324: Improve ItemFactory#enchantItem consistency 4e419c774 PR-1295: Define native persistent data types for lists dd8cca388 SPIGOT-7562: Fix Score#getScore and Score#isScoreSet 690278200 Only fetch an online UUID in online mode 1da8d9a53 Fire PreLogin events even in offline mode 2e88514ad PR-1325: Use CraftBlockType and CraftItemType instead of CraftMagicNumbers to convert between minecraft and bukkit block / item representation Spigot Changes: 864e4acc Restore accidentally removed package-info.java f91a10d5 Remove obsolete EntityMountEvent and EntityDismountEvent 828f0593 SPIGOT-7558: Deprecate silenceable lightning API as sound is now client-side and cannot be removed cdc4e035 Remove obsolete patch fetching correct mode UUIDs 49e36b8e Merge related BungeeCord patches 6e87b9ab Remove obsolete firing of PreLogin events in offline mode 5c76b183 Remove redundant patch dealing with exceptions in the crash reporter 3a2219d1 Remove redundant patch logging cause of unexpected exception
2024-01-14 10:46:04 +01:00
spigotServerPatchPatchesDir = layout.projectDirectory.dir("build-data/spigot-server-patches")
2021-06-27 05:11:45 +02:00
reobfPackagesToFix.addAll(
"co.aikar.timings",
"com.destroystokyo.paper",
"com.mojang",
"io.papermc.paper",
2021-12-02 08:21:14 +01:00
"ca.spottedleaf",
2021-06-27 05:11:45 +02:00
"net.kyori.adventure.bossbar",
"net.minecraft",
"org.bukkit.craftbukkit",
2021-12-02 08:21:14 +01:00
"org.spigotmc",
2021-06-27 05:11:45 +02:00
)
}
}
2021-08-18 00:11:04 +02:00
tasks.generateDevelopmentBundle {
2023-12-06 19:48:37 +01:00
apiCoordinates = "io.papermc.paper:paper-api"
mojangApiCoordinates = "io.papermc.paper:paper-mojangapi"
libraryRepositories.addAll(
"https://repo.maven.apache.org/maven2/",
paperMavenPublicUrl,
2023-12-07 05:04:46 +01:00
"https://s01.oss.sonatype.org/content/repositories/snapshots/", // todo Remove when updating adventure to release
2021-08-18 00:11:04 +02:00
)
}
publishing {
2022-02-21 21:44:17 +01:00
if (project.providers.gradleProperty("publishDevBundle").isPresent) {
2021-08-18 00:11:04 +02:00
publications.create<MavenPublication>("devBundle") {
artifact(tasks.generateDevelopmentBundle) {
artifactId = "dev-bundle"
}
}
}
}
allprojects {
publishing {
repositories {
maven("https://repo.papermc.io/repository/maven-snapshots/") {
2021-08-18 00:11:04 +02:00
name = "paperSnapshots"
credentials(PasswordCredentials::class)
}
}
}
}
tasks.register("printMinecraftVersion") {
doLast {
println(providers.gradleProperty("mcVersion").get().trim())
}
}
2022-03-04 10:41:03 +01:00
tasks.register("printPaperVersion") {
doLast {
println(project.version)
}
}
2023-12-06 04:35:33 +01:00
// see gradle.properties
if (providers.gradleProperty("updatingMinecraft").getOrElse("false").toBoolean()) {
tasks.collectAtsFromPatches {
2023-12-06 19:48:37 +01:00
val dir = layout.projectDirectory.dir("patches/unapplied/server")
if (dir.path.isDirectory()) {
extraPatchDir = dir
}
2023-12-06 04:35:33 +01:00
}
tasks.withType<io.papermc.paperweight.tasks.RebuildGitPatches>().configureEach {
2023-12-06 19:48:37 +01:00
filterPatches = false
2023-12-06 04:35:33 +01:00
}
tasks.register("continueServerUpdate", RebasePatches::class) {
2023-12-06 05:59:31 +01:00
description = "Moves the next X patches from unapplied to applied, and applies them. X being the number of patches that apply cleanly, plus the terminal failure if any."
2023-12-06 04:35:33 +01:00
projectDir = project.projectDir
appliedPatches = file("patches/server")
unappliedPatches = file("patches/unapplied/server")
2023-12-06 19:48:37 +01:00
applyTaskName = "applyServerPatches"
2023-12-06 04:35:33 +01:00
}
}
@UntrackedTask(because = "Does not make sense to track state")
abstract class RebasePatches : BaseTask() {
@get:Internal
abstract val projectDir: DirectoryProperty
@get:InputFiles
abstract val appliedPatches: DirectoryProperty
@get:InputFiles
abstract val unappliedPatches: DirectoryProperty
2023-12-06 19:48:37 +01:00
@get:Input
abstract val applyTaskName: Property<String>
2023-12-06 04:35:33 +01:00
private fun unapplied(): List<Path> =
unappliedPatches.path.listDirectoryEntries("*.patch").sortedBy { it.name }
2023-12-06 05:46:41 +01:00
private fun appliedLoc(patch: Path): Path = appliedPatches.path.resolve(unappliedPatches.path.relativize(patch))
companion object {
val regex = Pattern.compile("Patch failed at ([0-9]{4}) (.*)")
const val subjectPrefix = "Subject: [PATCH] "
}
2023-12-06 04:35:33 +01:00
@TaskAction
fun run() {
2023-12-06 05:46:41 +01:00
val unapplied = unapplied()
for (patch in unapplied) {
patch.copyTo(appliedLoc(patch))
}
2023-12-06 04:35:33 +01:00
2023-12-06 05:46:41 +01:00
val out = ByteArrayOutputStream()
val proc = ProcessBuilder()
.directory(projectDir.path)
2023-12-06 19:48:37 +01:00
.command("./gradlew", applyTaskName.get())
2023-12-06 05:46:41 +01:00
.redirectErrorStream(true)
.start()
val f = redirect(proc.inputStream, out)
2023-12-06 05:46:41 +01:00
val exit = proc.waitFor()
f.get()
2023-12-06 05:46:41 +01:00
if (exit != 0) {
val outStr = String(out.toByteArray())
val matcher = regex.matcher(outStr)
if (!matcher.find()) error("Could not determine failure point")
val failedSubjectFragment = matcher.group(2)
val failed = unapplied.single { p ->
p.useLines { lines ->
val subjectLine = lines.single { it.startsWith(subjectPrefix) }
.substringAfter(subjectPrefix)
subjectLine.startsWith(failedSubjectFragment)
}
}
// delete successful & failure point from unapplied patches dir
for (path in unapplied) {
path.deleteIfExists()
if (path == failed) {
break
}
}
2023-12-06 04:35:33 +01:00
2023-12-06 05:46:41 +01:00
// delete failed from patches dir
var started = false
for (path in unapplied) {
if (path == failed) {
started = true
continue
}
if (started) {
appliedLoc(path).deleteIfExists()
}
}
// Apply again to reset the am session (so it ends on the failed patch, to allow us to rebuild after fixing it)
val apply2 = ProcessBuilder()
2023-12-06 04:35:33 +01:00
.directory(projectDir.path)
2023-12-06 19:48:37 +01:00
.command("./gradlew", applyTaskName.get())
2023-12-06 04:35:33 +01:00
.redirectErrorStream(true)
.start()
val f1 = redirect(apply2.inputStream, System.out)
2023-12-06 21:24:41 +01:00
apply2.waitFor()
f1.get()
2023-12-06 04:35:33 +01:00
2023-12-06 05:46:41 +01:00
logger.lifecycle(outStr)
logger.lifecycle("Patch failed at $failed; See Git output above.")
} else {
unapplied.forEach { it.deleteIfExists() }
logger.lifecycle("All patches applied!")
2023-12-06 04:35:33 +01:00
}
2023-12-06 05:46:41 +01:00
val git = Git(projectDir.path)
git("add", appliedPatches.path.toString() + "/*").runSilently()
git("add", unappliedPatches.path.toString() + "/*").runSilently()
2023-12-06 04:35:33 +01:00
}
}