This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
402 lines (323 loc) · 10.4 KB
/
build.gradle
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
plugins {
id "fabric-loom" version "1.3-SNAPSHOT"
id "io.github.juuxel.loom-quiltflower" version "1.10.0" // Quiltflower, a better decompiler
// id "io.github.p03w.machete" version "1.+" // automatic jar compressing on build
id "maven-publish"
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
def moduleDependencies(project, List<String> depNames) {
def deps = depNames.iterator().collect { project.dependencies.project(path: ":$it", configuration: 'namedElements') }
project.dependencies {
deps.each {
api it
}
}
// As we manually handle the maven artifacts, we need to also manually specify the deps.
project.publishing {
publications {
if (project.archivesBaseName == "jello" || project.archivesBaseName == "gelatin") return
mavenJava(MavenPublication) {
pom.withXml {
def depsNode = asNode().appendNode("dependencies")
deps.each {
def depNode = depsNode.appendNode("dependency")
depNode.appendNode("groupId", it.group)
depNode.appendNode("artifactId", it.name)
depNode.appendNode("version", it.version)
depNode.appendNode("scope", "compile")
}
}
}
}
}
}
moduleDependencies(project, [
"common",
"dye-registry",
"dye-entries",
"dye-entities",
"dye-cauldron"
])
allprojects {
apply plugin: "fabric-loom"
apply plugin: "maven-publish"
apply plugin: "io.github.juuxel.loom-quiltflower"
group = project.maven_group
version = ("${project.mod_version}+${project.minecraft_version}")
archivesBaseName = project.archives_base_name
tasks.withType(JavaCompile).configureEach { it.options.release = 17 }
java {
withSourcesJar()
}
repositories {
maven { url "https://maven.wispforest.io" }
maven { url "https://maven.shedaniel.me/" }
maven { url "https://jitpack.io"}
maven { name = "Modrinth"
url "https://api.modrinth.com/maven"
content {includeGroup "maven.modrinth" }
}
maven {
url "https://cursemaven.com"
content {includeGroup "curse.maven" }
}
maven {
url "https://maven.terraformersmc.com/releases/"
content {includeGroup "com.terraformersmc" }
}
maven { url = "https://ueaj.dev/maven/" }
maven { url = "https://maven.gegy.dev/" }
mavenLocal()
mavenCentral()
}
// publishing {
// if (project.archivesBaseName == "jello") return
//
// setupRepositories(repositories)
// }
dependencies {
minecraft("com.mojang:minecraft:${project.minecraft_version}")
mappings("net.fabricmc:yarn:${project.yarn_mappings}:v2")
modImplementation("net.fabricmc:fabric-loader:${project.loader_version}")
modCompileOnly('com.google.code.findbugs:jsr305:3.0.2')
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
//-----------------
implementation("org.atteo:evo-inflector:1.3")
if(project.archivesBaseName == "jello"){
annotationProcessor modImplementation ("io.wispforest:owo-lib:${project.owo_version}", {
exclude group: "net.fabricmc.fabric-api"
})
} else {
if(project.archivesBaseName == "gelatin"){
annotationProcessor ("io.wispforest:owo-lib:${project.owo_version}", {
exclude group: "net.fabricmc.fabric-api"
})
}
modCompileOnly /*modLocalRuntime*/ ("io.wispforest:owo-lib:${project.owo_version}", {
exclude group: "net.fabricmc.fabric-api"
})
}
modCompileOnly modLocalRuntime("me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei}"){
exclude group: "net.fabricmc.fabric-api"
exclude group: "com.terraformersmc"
}
modCompileOnly modLocalRuntime("me.shedaniel:RoughlyEnoughItems-fabric:${project.rei}"){
exclude group: "net.fabricmc.fabric-api"
exclude group: "com.terraformersmc"
}
modLocalRuntime("maven.modrinth:better-beds:${project.better_beds}")
modCompileOnly modLocalRuntime("io.wispforest:condensed_creative-fabric:${project.cc}", {
exclude group: "net.fabricmc.fabric-api"
exclude group: "io.wispforest"
})
modCompileOnly modLocalRuntime("com.terraformersmc:modmenu:${project.modmenu}")
//modImplementation modLocalRuntime("maven.modrinth:carpet:${project.carpet}")
//modImplementation modLocalRuntime("maven.modrinth:ebe:${project.ebe}")
//modLocalRuntime("net.devtech:arrp:0.6.7")
//modLocalRuntime("maven.modrinth:diagonal-windows:v8.0.1-1.20.1-Fabric")
//modLocalRuntime("maven.modrinth:puzzles-lib:v8.0.24-1.20.1-Fabric")
//modLocalRuntime("maven.modrinth:forge-config-api-port:v8.0.0-1.20.1-Fabric")
//-----------------
// Local Mods
modLocalRuntime("maven.modrinth:ferrite-core:${project.ferrite_core}-fabric")
// modLocalRuntime("maven.modrinth:lithium:${project.lithium}")
modCompileOnly modLocalRuntime ("maven.modrinth:sodium:${project.sodium}")
modCompileOnly modLocalRuntime ("maven.modrinth:indium:${project.indium}")
modCompileOnly modLocalRuntime('org.joml:joml:1.10.2')
modLocalRuntime("maven.modrinth:starlight:${project.starlight}")
modLocalRuntime("maven.modrinth:lazydfu:${project.lazydfu}")
}
allprojects.each { p ->
loom.mods.register(p.name) {
sourceSet p.sourceSets.main
}
}
loom {
accessWidenerPath = file("src/main/resources/${project.name}.accesswidener") // globalAccessWidener
runtimeOnlyLog4j = true
sourceSets {
main {
resources {
srcDir(project.file("src/generated/resources"))
exclude(project.file("src/generated/resources/.cache").toString())
}
}
}
runs {
if(project.archivesBaseName == "jello" || project.archivesBaseName == "gelatin") {
client {
client()
ideConfigGenerated true
name = "[${project.archivesBaseName}] Client"
source sourceSets.main
}
server {
server()
ideConfigGenerated true
name = "[${project.archivesBaseName}] Server"
source sourceSets.main
}
if (project.archivesBaseName == "jello") {
datagen {
client()
ideConfigGenerated true
name "[${project.archivesBaseName}] Data Generation"
vmArg "-Dfabric-api.datagen"
vmArg "-Dfabric-api.datagen.output-dir=${project.file("src/generated/resources")}"
vmArg "-Dfabric-api.datagen.modid=jello"
runDir "build/datagen"
}
client_renderDoc {
client()
ideConfigGenerated true
name = "[${project.archivesBaseName}] Client - (RenderDoc)"
source sourceSets.main
vmArg "-Dowo.renderdocPath=${System.getenv('renderDocPath')}"
//"C:\Program Files\RenderDoc\renderdoc.dll"
}
client_mixin {
client()
ideConfigGenerated true
name = "[${project.archivesBaseName}] Client - (Mixin Swap)"
source sourceSets.main
vmArg "-Dmixin.debug.export=true"
try {
afterEvaluate {
def mixinDep = this.configurations.compileClasspath
.allDependencies
.findAll { it.name == "sponge-mixin" }
.first()
if (mixin != null) {
def mixinPath = this.configurations.compileClasspath.files(mixinDep).first().path;
println(mixinPath)
vmArg("-javaagent:\"${mixinPath}\"")
println("[Info]: Mixin Hotswap Run should be working")
} else {
println("[Warning]: Unable to locate file path for Mixin Jar, HotSwap Run will not work!!!")
}
}
} catch (Exception e) {
println("[Error]: MixinHotswap Run had a issue!")
e.printStackTrace()
}
}
}
}
}
}
tasks.withType(ProcessResources).configureEach { proccess ->
inputs.property "version", project.version
filesMatching("fabric.mod.json") { expand "version": project.version }
}
tasks.withType(AbstractArchiveTask) {
preserveFileTimestamps = true
reproducibleFileOrder = true
}
tasks.withType(JavaCompile).configureEach {
it.options.release = Integer.parseInt(sourceCompatibility)
}
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}" }
}
}
}
javadoc {
options {
source = "17"
encoding = "UTF-8"
charSet = "UTF-8"
memberLevel = JavadocMemberLevel.PACKAGE
links(
"https://guava.dev/releases/21.0/api/docs/",
"https://asm.ow2.io/javadoc/",
"https://docs.oracle.com/javase/8/docs/api/",
"http://jenkins.liteloader.com/job/Mixin/javadoc/",
"https://logging.apache.org/log4j/2.x/log4j-api/apidocs/"
// Need to add minecraft jd publication etc once there is one available
)
// Disable the crazy super-strict doclint tool in Java 8
addStringOption("Xdoclint:none", "-quiet")
}
allprojects.each { project ->
if(project.archivesBaseName == "jello" || project.archivesBaseName == "gelatin") return
source(project.sourceSets.main.allJava.srcDirs)
}
classpath = files(sourceSets.main.compileClasspath)
include("**/api/**")
failOnError false
}
var allowNestedJars = true
publishing {
setupRepositories(repositories)
publications {
mavenJava(MavenPublication) {
//This is such a jank way of disabling nested jars when publishing Gelatin only without the modules since
//allowNestedJars = false
artifact(remapJar) {
builtBy(remapJar)
}
artifact(sourcesJar) {
builtBy remapSourcesJar
}
pom.withXml {
def depsNode = asNode().appendNode("dependencies")
subprojects.each {
if (it.archivesBaseName == "jello" || it.archivesBaseName == "gelatin") return//if(project.archivesBaseName == "jello") return
def depNode = depsNode.appendNode("dependency")
depNode.appendNode("groupId", it.group)
depNode.appendNode("artifactId", it.name)
depNode.appendNode("version", it.version)
depNode.appendNode("scope", "compile")
}
}
}
}
}
void setupRepositories(RepositoryHandler repositories) {
//repositories.mavenLocal() // uncomment for testing
def ENV = System.getenv()
repositories.maven {
url ENV.MAVEN_URL
credentials {
username ENV.MAVEN_USER
password ENV.MAVEN_PASSWORD
}
}
}
subprojects.each {
if(it.archivesBaseName == "jello") return
remapJar.dependsOn("${it.path}:remapJar")
}
subprojects {
publishing {
if (project.archivesBaseName == "jello") return
setupRepositories(repositories)
publications {
release(MavenPublication) {
from components.java
artifactId = project.archivesBaseName
groupId = project.group
version = project.version
}
}
}
}
dependencies {
afterEvaluate {
subprojects.each {
if(it.archivesBaseName == "jello") return
api project(path: "${it.path}", configuration: "namedElements")
}
}
}
remapJar {
afterEvaluate {
if(!allowNestedJars) return
subprojects.each {
if(it.archivesBaseName == "jello") return
nestedJars.from project("${it.path}").tasks.getByName("remapJar")//project.tasks.getByName("remapJar")
}
}
}