-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
297 lines (242 loc) · 8.98 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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import net.fabricmc.loom.api.LoomGradleExtensionAPI
import net.fabricmc.loom.task.RemapJarTask
plugins {
java
id("architectury-plugin") version "3.4-SNAPSHOT"
id("dev.architectury.loom") version "1.7-SNAPSHOT" apply false
id("com.github.johnrengelman.shadow") version "8.1.1" apply false
id("maven-publish")
id("me.modmuss50.mod-publish-plugin") version "0.6.3"
}
val isSnapshot = project.findProperty("snapshot") != "false"
architectury.minecraft = properties["minecraft_version"] as String
allprojects {
apply(plugin = "java")
base { archivesName = properties["mod_id"] as String }
version = "mc${properties["minecraft_version"]}-${properties["mod_version"]}"
if (isSnapshot)
version = "${version}-SNAPSHOT"
group = properties["maven_group"] as String
}
subprojects {
val isMinecraftSubProject = findProject(":common") != project && findProject(":common-testmod") != project
apply(plugin = "architectury-plugin")
apply(plugin = "dev.architectury.loom")
apply(plugin = "maven-publish")
apply(plugin = "com.github.johnrengelman.shadow")
base { archivesName = "${properties["mod_id"]}-${project.name}" }
val loom = project.extensions.getByName<LoomGradleExtensionAPI>("loom")
loom.silentMojangMappingsLicense()
if (isMinecraftSubProject) {
loom.runs {
named("client") {
client()
configName = "Client"
ideConfigGenerated(true)
runDir("../.runs/client")
source(sourceSets["main"])
programArgs("--username=Dev")
}
named("server") {
server()
configName = "Server"
ideConfigGenerated(true)
runDir("../.runs/server")
source(sourceSets["main"])
}
}
}
configurations {
create("common") {
isCanBeResolved = true
isCanBeConsumed = false
}
compileClasspath.get().extendsFrom(configurations["common"])
runtimeClasspath.get().extendsFrom(configurations["common"])
// Files in this configuration will be bundled into your mod using the Shadow plugin.
// Don't use the `shadow` configuration from the plugin itself as it's meant for excluding files.
create("shadowBundle") {
isCanBeResolved = true
isCanBeConsumed = false
}
create("jarShadow") {
isCanBeResolved = true
isCanBeConsumed = false
}
implementation.get().extendsFrom(configurations["jarShadow"])
create("modShadow")
getByName("modImplementation").extendsFrom(configurations["modShadow"])
getByName("include").extendsFrom(configurations["modShadow"])
}
repositories {
mavenCentral()
mavenLocal()
maven("https://maven.architectury.dev/")
maven("https://maven.parchmentmc.org/")
maven("https://maven.fabricmc.net/")
maven("https://maven.minecraftforge.net/")
maven("https://maven.neoforged.net/releases/")
}
@Suppress("UnstableApiUsage")
dependencies {
"minecraft"("com.mojang:minecraft:${properties["minecraft_version"]}") {
exclude(group = "org.joml", module = "joml")
}
"mappings"(loom.layered {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-${properties["parchment_minecraft_version"]}:${properties["parchment_version"]}@zip")
})
// Embed joml
"jarShadow"("org.joml:joml:${properties["deps_joml_version"]}")
compileOnly("org.jetbrains:annotations:24.1.0")
}
if (isMinecraftSubProject) {
tasks.withType<ShadowJar> {
exclude("architectury.common.json")
}
}
tasks.withType<ShadowJar> {
configurations = listOf(project.configurations.getByName("shadowBundle"), project.configurations.getByName("jarShadow"))
archiveClassifier.set("dev-shadow")
// Relocate joml as to not cause issues with Minecraft
relocate("org.joml", "${properties["maven_group"]}.joml")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.release.set(JavaLanguageVersion.of(properties["java_version"] as String).asInt())
}
tasks.processResources {
val props = mutableMapOf(
"java_version" to properties["java_version"],
"supported_mod_loaders" to properties["supported_mod_loaders"],
"maven_group" to properties["maven_group"],
"mod_id" to properties["mod_id"],
"mod_version" to properties["mod_version"],
"mod_name" to properties["mod_name"],
"mod_description" to properties["mod_description"],
"mod_author" to properties["mod_author"],
"mod_license" to properties["mod_license"],
"project_curseforge_slug" to properties["project_curseforge_slug"],
"project_modrinth_slug" to properties["project_modrinth_slug"],
"project_github_repo" to properties["project_github_repo"],
)
if (properties["fabric_version_range"] != null)
props["fabric_version_range"] = properties["fabric_version_range"] as String
if (properties["forge_version_range"] != null)
props["forge_version_range"] = properties["forge_version_range"] as String
if (properties["neoforge_version_range"] != null)
props["neoforge_version_range"] = properties["neoforge_version_range"] as String
inputs.properties(props)
filesMatching(listOf("pack.mcmeta", "fabric.mod.json", "META-INF/mods.toml", "META-INF/neoforge.mods.toml", "*.mixins.json")) {
expand(props)
}
}
tasks.jar {
manifest {
attributes(mapOf(
"Specification-Title" to properties["mod_name"],
"Specification-Vendor" to properties["mod_author"],
"Specification-Version" to properties["mod_version"],
"Implementation-Title" to name,
"Implementation-Vendor" to properties["mod_author"],
"Implementation-Version" to archiveVersion
))
}
}
java {
withSourcesJar()
}
}
// Mod Publishing
var curseForgeAPIKey = providers.environmentVariable("CURSEFORGE_API_KEY")
var modrinthAPIKey = providers.environmentVariable("MODRINTH_API_KEY")
//var githubAPIKey = providers.environmentVariable("GITHUB_API_KEY")
publishMods {
dryRun = properties["publishing_dry_run"].toString().toBoolean()
version = properties["mod_version"].toString()
changelog = rootProject.file("CHANGELOG.md").readText()
// Set the release type
type = when (properties["publishing_release_type"].toString().toInt()) {
2 -> ALPHA
1 -> BETA
else -> STABLE
}
val isRangedVersion = properties["publishing_latest_minecraft_version"] != null
val minecraftVersionStr = if (isRangedVersion) {
"${properties["publishing_minecraft_version"]}-${properties["publishing_latest_minecraft_version"]}"
} else {
properties["publishing_minecraft_version"]
}
// Creates publish options for each supported mod loader
properties["supported_mod_loaders"].toString().split(",").forEach {
val loaderName = it
val loaderDisplayName = when (it) {
"fabric" -> "Fabric"
"forge" -> "Forge"
"neoforge" -> "NeoForge"
else -> it
}
val remapJar = rootProject.project(":$loaderName").tasks.getByName<RemapJarTask>("remapJar")
curseforge("curseforge_${loaderName}") {
accessToken = curseForgeAPIKey
displayName = "[${loaderDisplayName} ${minecraftVersionStr}] v${properties["mod_version"]}"
projectId = properties["project_curseforge_id"] as String
modLoaders.add(loaderName)
file = remapJar.archiveFile
if (isRangedVersion)
minecraftVersionRange {
start = properties["publishing_minecraft_version"] as String
end = properties["publishing_latest_minecraft_version"] as String
}
else
minecraftVersions.add(properties["publishing_minecraft_version"] as String)
javaVersions.add(JavaVersion.VERSION_21)
clientRequired = true
serverRequired = true
if (loaderName == "fabric")
requires("fabric-api")
requires("architectury-api")
}
modrinth("modrinth_" + loaderName) {
accessToken = modrinthAPIKey
displayName = "[${loaderDisplayName} ${minecraftVersionStr}] v${properties["mod_version"]}"
projectId = properties["project_modrinth_id"] as String
modLoaders.add(loaderName)
file = remapJar.archiveFile
if (isRangedVersion)
minecraftVersionRange {
start = properties["publishing_minecraft_version"] as String
end = properties["publishing_latest_minecraft_version"] as String
}
else
minecraftVersions.add(properties["publishing_minecraft_version"] as String)
if (loaderName == "fabric")
requires("fabric-api")
requires("architectury-api")
}
}
// val githubRepository = properties["project_github_repo"] as String
// val releaseType = when (properties["publishing_release_type"].toString().toInt()) {
// 2 -> "alpha"
// 1 -> "beta"
// else -> "stable"
// }
// val githubTagName = "${releaseType}/${properties["mod_version"]}-${minecraftVersionStr}"
// github {
// displayName = "${properties["mod_name"]} ${properties["mod_version"]} MC${minecraftVersionStr}"
// accessToken = githubAPIKey
// repository = githubRepository
// tagName = githubTagName
// commitish = "main"
//
// modLoaders.addAll(properties["supported_mod_loaders"].toString().trim().split(","))
// val commonRemapJar = project(":common").tasks.getByName<RemapJarTask>("remapJar")
// file = commonRemapJar.archiveFile
//
// properties["supported_mod_loaders"].toString().split(",").forEach {
// val modRemapJar = project(":$it").tasks.getByName<RemapJarTask>("remapJar")
// additionalFiles.from(modRemapJar.archiveFile)
// }
// }
}