-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
176 lines (142 loc) · 6.1 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import io.papermc.paperweight.util.path
import org.gradle.configurationcache.extensions.capitalized
import kotlin.io.path.deleteRecursively
import kotlin.io.path.readLines
import kotlin.io.path.writeLines
plugins {
java
`maven-publish`
// Nothing special about this, just keep it up to date
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
// In general, keep this version in sync with upstream. Sometimes a newer version than upstream might work, but an older version is extremely likely to break.
id("io.papermc.paperweight.patcher") version "1.5.11"
id("com.github.ManifestClasspath") version "0.1.0-RELEASE"
}
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
repositories {
mavenCentral()
maven(paperMavenPublicUrl) {
content { onlyForConfigurations(configurations.paperclip.name) }
}
}
dependencies {
remapper("net.fabricmc:tiny-remapper:0.8.10:fat") // Must be kept in sync with upstream
decompiler("net.minecraftforge:forgeflower:2.0.627.2") // Must be kept in sync with upstream
paperclip("io.papermc:paperclip:3.0.3") // You probably want this to be kept in sync with upstream
}
allprojects {
apply(plugin = "java")
apply(plugin = "maven-publish")
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
}
subprojects {
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
options.release = 17
}
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()
}
tasks.withType<ProcessResources> {
filteringCharset = Charsets.UTF_8.name()
}
repositories {
mavenCentral()
maven(paperMavenPublicUrl)
}
}
paperweight {
serverProject = project(":fiddle-server") // Fiddle - build changes
remapRepo = paperMavenPublicUrl
decompileRepo = paperMavenPublicUrl
usePaperUpstream(providers.gradleProperty("paperRef")) {
withPaperPatcher {
apiPatchDir = layout.projectDirectory.dir("patches/api")
apiOutputDir = layout.projectDirectory.dir("fiddle-api") // Fiddle - build changes
serverPatchDir = layout.projectDirectory.dir("patches/server")
serverOutputDir = layout.projectDirectory.dir("fiddle-server") // Fiddle - build changes
}
patchTasks.register("generatedApi") {
isBareDirectory = true
upstreamDirPath = "paper-api-generator/generated"
patchDir = layout.projectDirectory.dir("patches/generatedApi")
outputDir = layout.projectDirectory.dir("paper-api-generator/generated")
}
}
}
// Uncomment while updating for a new Minecraft version
//tasks.withType<CollectATsFromPatches> {
// extraPatchDir.set(layout.projectDirectory.dir("patches/unapplied/server"))
//}
// Fiddle start - branding changes - license - package into jar
for (classifier in arrayOf("mojmap", "reobf")) {
// Based on io.papermc.paperweight.taskcontainers.BundlerJarTasks
tasks.named("create${classifier.capitalized()}PaperclipJar") {
doLast {
// Based on io.papermc.paperweight.taskcontainers.BundlerJarTasks
val jarName = listOfNotNull(
project.name,
"paperclip",
project.version,
classifier
).joinToString("-") + ".jar"
// Based on io.papermc.paperweight.taskcontainers.BundlerJarTasks
val zipFile = layout.buildDirectory.file("libs/$jarName").path
val rootDir = io.papermc.paperweight.util.findOutputDir(zipFile)
try {
io.papermc.paperweight.util.unzip(zipFile, rootDir)
val licenseFileName = "LICENSE.txt"
project(":fiddle-server").projectDir.resolve(licenseFileName).copyTo(rootDir.resolve(licenseFileName).toFile())
io.papermc.paperweight.util.ensureDeleted(zipFile)
io.papermc.paperweight.util.zip(rootDir, zipFile)
} finally {
@OptIn(kotlin.io.path.ExperimentalPathApi::class)
rootDir.deleteRecursively()
}
}
}
}
// Fiddle end - branding changes - license - package into jar
// Fiddle start - extend jar manifest
val extendedManifestElements: List<Pair<String, String>> = listOf(
"Add-Opens" to "java.base/java.lang" // Fiddle - modifiable Bukkit enums - inject runtime versions - add module opens to server jar
)
if (extendedManifestElements.isNotEmpty()) {
for (classifier in arrayOf("mojmap", "reobf")) {
// Based on io.papermc.paperweight.taskcontainers.BundlerJarTasks
tasks.named("create${classifier.capitalized()}BundlerJar") {
doLast {
// Based on io.papermc.paperweight.taskcontainers.BundlerJarTasks
val jarName = listOfNotNull(
project.name,
"bundler",
project.version,
classifier
).joinToString("-") + ".jar"
// Based on io.papermc.paperweight.taskcontainers.BundlerJarTasks
val zipFile = layout.buildDirectory.file("libs/$jarName").path
val rootDir = io.papermc.paperweight.util.findOutputDir(zipFile)
try {
io.papermc.paperweight.util.unzip(zipFile, rootDir)
val manifestFile = rootDir.resolve("META-INF/MANIFEST.MF")
manifestFile.writeLines(ArrayList(manifestFile.readLines()).apply {
addAll(
indexOfFirst { it.startsWith("Main-Class:") } + 1,
extendedManifestElements.map { "${it.first}: ${it.second}" }
)
})
io.papermc.paperweight.util.ensureDeleted(zipFile)
io.papermc.paperweight.util.zip(rootDir, zipFile)
} finally {
@OptIn(kotlin.io.path.ExperimentalPathApi::class)
rootDir.deleteRecursively()
}
}
}
}
}
// Fiddle end - extend jar manifest