forked from sinkillerj/ProjectE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
379 lines (332 loc) · 14.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
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
import net.minecraftforge.gradle.common.util.RunConfig
import java.util.function.Consumer
plugins {
id "com.github.johnrengelman.shadow" version "8.1.+"
id 'java'
id 'eclipse'
id 'idea'
id 'net.neoforged.gradle' version '[6.0.18,6.2)'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
}
tasks.named('wrapper', Wrapper).configure {
//Define wrapper values here so as to not have to always do so when updating gradlew.properties
gradleVersion = '8.4'
distributionType = Wrapper.DistributionType.ALL
}
defaultTasks 'build'
idea {
module {
//Exclude directories from being managed
for (String excludeDirName in ["run", "out", "logs", "gradle"]) {
excludeDirs.add(new File(projectDir, excludeDirName))
}
}
}
sourceSets {
api {
//The API has no resources
resources.srcDirs = []
}
main {
resources {
//Add the generated main module resources
srcDirs += 'src/datagen/generated'
//But exclude the cache of the generated data from what gets built
exclude '.cache'
}
compileClasspath += api.output
runtimeClasspath += api.output
}
datagen {
java.srcDirs = ['src/datagen/java']
//Data gen has no resources it just creates resources
resources.srcDirs = []
compileClasspath += api.output + main.output
}
test {
//The test module has no resources
resources.srcDirs = []
compileClasspath += api.output + main.output
runtimeClasspath += api.output + main.output
}
}
def libraryConfigs = new HashSet<Configuration>()
configurations { configContainer ->
sourceSets.each { sourceSet ->
def configName = sourceSet.getTaskName(null, "forgeLibrary")
def implementationConfigName = sourceSet.getTaskName(null, "implementation")
def libraryConfig = configContainer.maybeCreate(configName)
def implementationConfig = configContainer.maybeCreate(implementationConfigName)
implementationConfig.extendsFrom libraryConfig
libraryConfigs.add(libraryConfig)
}
//Make sure all our sub source set stuff extends the proper base methods so that
// they can see all the dependencies we have in dependencies including forge
extendConfigurations(implementation, apiImplementation, testImplementation, datagenImplementation)
extendConfigurations(compileOnly, apiCompileOnly, testCompileOnly, datagenCompileOnly)
extendConfigurations(runtimeOnly, apiRuntimeOnly, datagenRuntimeOnly)
}
static void extendConfigurations(Configuration base, Configuration... configurations) {
for (def configuration : configurations) {
configuration.extendsFrom(base)
}
}
ext {
versionProperties = ["version" : projecte_version, "mc_version": minecraft_version_range, "forge_version": forge_version_range,
"loader_version": loader_version_range]
jsonPatterns = ["**/*.json", "**/*.mcmeta"]
//Setup the UPDATE_SOURCESET property in case we are doing any remappings
UPDATE_SOURCESETS = project.sourceSets.collect { it.name }.join(';')
}
def replaceResources = tasks.register("replaceResources", Copy) {
it.outputs.upToDateWhen { false }
def modsToml = copySpec {
from(sourceSets.main.resources) {
include "META-INF/mods.toml"
expand versionProperties
}
}
//Copy it into the build dir
it.with modsToml
it.into "$buildDir/resources/main/"
//If IntelliJ's output dir exists, copy it there as well
if (new File("$rootDir/out/production/").exists()) {
copy {
with modsToml
into "$rootDir/out/production/"
}
}
//If Eclipse's output dir exists, copy it there as well
if (new File("$rootDir/bin/main/").exists()) {
copy {
with modsToml
into "$rootDir/bin/main/"
}
}
}
version = "${projecte_version}"
group = "java.moze_intel"
archivesBaseName = "projecte"
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
vendor.set(JvmVendorSpec.JETBRAINS)
}
}
minecraft {
if (mappings_channel == "parchment_previous") {
mappings channel: 'parchment', version: "${previous_minecraft_version}-${mappings_version}"
} else {
mappings channel: "${mappings_channel}", version: "${mappings_version}"
}
accessTransformers.from(file('src/main/resources/META-INF/accesstransformer.cfg'))
runs { runSpecContainer ->
client {
setupRunConfig(it, true)
//The below if statements are to add args to your gradle.properties file in user home
// (DO NOT add them directly to the gradle.properties file for this project)
// Setting the below properties allows use of your normal Minecraft account in the
// dev environment including having your skin load. Each property also has a comment
// explaining what information to set the value to/format it expects
// One thing to note is because of the caching that goes on, after changing these
// variables, you need to refresh the project and rerun genIntellijRuns/genEclipseRuns
if (project.hasProperty('mc_uuid')) {
//Your uuid without any dashes in the middle
args '--uuid', project.getProperty('mc_uuid')
}
if (project.hasProperty('mc_username')) {
//Your username/display name, this is the name that shows up in chat
// Note: This is not your email, even if you have a Mojang account
args '--username', project.getProperty('mc_username')
}
if (project.hasProperty('mc_accessToken')) {
//Your access token, you can find it in your '.minecraft/launcher_accounts.json' file
args '--accessToken', project.getProperty('mc_accessToken')
}
}
server { setupRunConfig(it, true) }
data {
setupRunConfig(it, false)
environment 'target', 'fmluserdevdata'
args '--all', '--output', file('src/datagen/generated/'), '--mod', 'projecte',
'--existing', file('src/main/resources/')
mods.named("projecte").configure { source((SourceSet) sourceSets.datagen) }
}
project.afterEvaluate {
def paths = new HashSet<String>()
libraryConfigs.each { config ->
config.copyRecursive().resolve().collect {
it.absolutePath.toString()
}.each { path ->
paths.add(path)
}
}
runSpecContainer.each { runSpec ->
runSpec.lazyToken('minecraft_classpath') {
paths.join(File.pathSeparator)
}
}
}
}
}
def setupRunConfig(RunConfig runConfig, boolean supportsGameTests, String directory = "run") {
runConfig.workingDirectory(file(directory))
//This fixes Mixin application problems from other mods because their refMaps are SRG-based, but we're in a MCP env
runConfig.property 'mixin.env.remapRefMap', 'true'
runConfig.property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
if (supportsGameTests) {
//Specify all our mods as domains to look for game tests
runConfig.property 'forge.enabledGameTestNamespaces', 'projecte'
}
if (project.hasProperty('forge_force_ansi')) {
//Force ansi if declared as a gradle variable, as the auto detection doesn't detect IntelliJ properly
// or eclipse's plugin that adds support for ansi escape in console
runConfig.jvmArg("-Dterminal.ansi=${project.getProperty('forge_force_ansi')}")
}
runConfig.mods.register("projecte").configure {
sources((SourceSet[]) [sourceSets.main, sourceSets.api])
}
//if the selected toolchain is a JBR, enable DCEVM
if(project.javaToolchains.launcherFor(java.toolchain).map{it.metadata.vendor }.getOrElse("").contains("JetBrains")) {
runConfig.jvmArg("-XX:+AllowEnhancedClassRedefinition")
}
}
void exclusiveRepo(RepositoryHandler handler, String url, String... groups) {
exclusiveRepo(handler, url, filter -> {
for (def group : groups) {
filter.includeGroup(group)
}
})
}
//Note: This cannot be static so that fg.repository can be properly accessed
@SuppressWarnings('GrMethodMayBeStatic')
void exclusiveRepo(RepositoryHandler handler, String url, Consumer<InclusiveRepositoryContentDescriptor> filterSetup) {
handler.exclusiveContent {
it.forRepositories(handler.maven {
setUrl(url)
}, fg.repository)//Add FG's repo so we make sure we are able to then find the mapped deps
it.filter { f -> filterSetup.accept(f) }
}
}
repositories { RepositoryHandler handler ->
exclusiveRepo(handler, 'https://maven.blamejared.com', filter -> {
filter.includeGroupByRegex 'com\\.blamejared.*'
filter.includeGroup 'mezz.jei'
filter.includeGroup 'org.openzen.zencode'
})
exclusiveRepo(handler, 'https://maven.theillusivec4.top/', 'top.theillusivec4.curios')
exclusiveRepo(handler, 'https://maven2.bai.lol', 'lol.bai', 'mcp.mobius.waila')//WTHIT
exclusiveRepo(handler, 'https://modmaven.dev/', 'mcjty.theoneprobe')
exclusiveRepo(handler, 'https://www.cursemaven.com', 'curse.maven')
}
test {
useJUnitPlatform()
}
dependencies {
minecraft "net.neoforged:forge:${minecraft_version}-${forge_version}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_version}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_version}"
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}-common-api:${jei_version}")
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}")
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}-forge:${jei_version}")
compileOnly fg.deobf("top.theillusivec4.curios:curios-forge:${curios_version}:api")
runtimeOnly fg.deobf("top.theillusivec4.curios:curios-forge:${curios_version}")
//TODO: Remove having to specify these as non transitive once https://github.com/McJtyMods/TheOneProbe/issues/548 is fixed
compileOnly fg.deobf("mcjty.theoneprobe:theoneprobe:${top_version}:api") {
transitive = false
}
runtimeOnly fg.deobf("mcjty.theoneprobe:theoneprobe:${top_version}") {
transitive = false
}
compileOnly fg.deobf("curse.maven:jade-api-324717:${jade_api_id}")
runtimeOnly fg.deobf("curse.maven:jade-324717:${jade_id}")
compileOnly fg.deobf("mcp.mobius.waila:wthit-api:forge-${wthit_version}")
implementation fg.deobf("com.blamejared.crafttweaker:CraftTweaker-forge-${minecraft_version}:${crafttweaker_version}")
forgeLibrary group: "org.apache.commons", name: "commons-math3", version: "3.6.1"
}
//Set the various variables/settings for the different process resources tasks
processResources {
duplicatesStrategy(DuplicatesStrategy.FAIL)
exclude('META-INF/mods.toml')
configure { finalizedBy(replaceResources) }
doLast {
fileTree(dir: getOutputs().getFiles().getAsPath(), includes: jsonPatterns).each {
File file -> file.setText(JsonOutput.toJson(new JsonSlurper().parse(file)))
}
}
}
//Make the various classes tasks depend on the corresponding replaceResources tasks in addition to the default processResources tasks they depend on
classes.configure { dependsOn(replaceResources) }
def getManifestAttributes() {
return [
"Specification-Title" : "ProjectE",
"Specification-Vendor" : "ProjectE",
"Specification-Version" : "${project.projecte_version}",
"Implementation-Title" : "ProjectE",
"Implementation-Version" : "${project.projecte_version}",
"Implementation-Vendor" : "ProjectE",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"Automatic-Module-Name" : "projecte"
]
}
jar {
duplicatesStrategy(DuplicatesStrategy.FAIL)
from([sourceSets.api.output, sourceSets.main.output])
manifest.attributes(getManifestAttributes())
afterEvaluate { finalizedBy reobfJar }
}
task apiJar(type: Jar) {
duplicatesStrategy(DuplicatesStrategy.FAIL)
archiveClassifier.set("api")
from sourceSets.api.output
manifest.attributes(getManifestAttributes())
afterEvaluate { finalizedBy reobfApiJar }
}
shadowJar {
//Note: We use the include duplicate strategy instead of FAIL as minimize causes
// the things to get "added" twice but it is filtered separately by the shadow
// plugin anyways
duplicatesStrategy(DuplicatesStrategy.INCLUDE)
archiveClassifier.set("universal") // Replace the default JAR
dependsOn(classes, apiClasses)
from([sourceSets.api.output, sourceSets.main.output])
// Only shadow apache commons-math3
dependencies {
include dependency('org.apache.commons:commons-math3:.*')
}
exclude('assets/org/**')
exclude('META-INF/maven/**')
exclude('META-INF/*.txt')
// Relocate apache commons-math3 to prevent conflicts with other mods that include it
relocate 'org.apache.commons.math3', 'moze_intel.projecte.shaded.org.apache.commons.math3'
// Minimize the required files so we only include what is needed
minimize {
include dependency('org.apache.commons:commons-math3:.*')
}
afterEvaluate { finalizedBy reobfShadowJar }
}
reobf {
shadowJar {}
apiJar { libraries.from(sourceSets.api.compileClasspath) }
jar { libraries.from(sourceSets.main.compileClasspath) }
}
tasks.register('updateJSON') {
doLast {
def updateJsonFile = file('update.json')
def updateJson = new JsonSlurper().parse(updateJsonFile) as Map
updateJson."${minecraft_version}"."${project.version}" = "See https://www.curseforge.com/minecraft/mc-mods/projecte/files for detailed information."
// Update promos
updateJson.promos."${minecraft_version}-latest" = "${project.version}"
updateJson.promos."${minecraft_version}-recommended" = "${project.version}"
updateJsonFile.write(JsonOutput.prettyPrint(JsonOutput.toJson(updateJson)))
}
}
tasks.withType(JavaCompile).configureEach({
it.options.encoding = 'UTF-8'
it.options.compilerArgs.addAll(["-Xmaxerrs", "100000"])
})
artifacts {
archives apiJar
}