-
Notifications
You must be signed in to change notification settings - Fork 782
/
build.gradle
388 lines (332 loc) · 13.2 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
/*
* Tinkers Construct
* Master build file
*
* Authors: boni, Sunstrike, ProgWML6
* Help from AbrarSyed
*/
plugins {
id 'eclipse'
id 'maven-publish'
id 'net.minecraftforge.gradle' version '5.1.+'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
id 'io.freefair.lombok' version '8.6'
}
//apply plugin: 'maven'
//import net.minecraftforge.gradle.common.task.SignJar
repositories {
mavenCentral()
maven { // Mantle
name 'DVS1 Maven FS'
url 'https://dvs1.progwml6.com/files/maven'
}
maven { // TOP
name 'tterrag maven'
url "https://maven.tterrag.com/"
}
maven { // CraftTweaker, Immersive Engineering, JEI
name 'BlameJared Maven'
url 'https://maven.blamejared.com'
}
maven { // JSON Things
name 'Dogforce Games'
url 'https://www.dogforce-games.com/maven/'
}
maven {
url "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
// If you have mod jar dependencies in ./libs, you can declare them as a repository like so:
flatDir {
dir '../Mantle/build/libs'
}
}
group = 'slimeknights.tconstruct'
archivesBaseName = 'TinkersConstruct'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
// sets version to the slimeKnights version format
task buildInfo {
try {
def cmd = "git rev-parse --short HEAD"
def proc = cmd.execute()
proc.waitFor()
if (proc.exitValue() == 0) {
ext.revision = proc.text.trim()
} else {
ext.revision = "GITBORK"
}
} catch (all) {
ext.revision = "gitgud"
}
if (System.getenv().BUILD_NUMBER != null) {
ext.buildNum = "${System.getenv().BUILD_NUMBER}"
} else {
ext.buildNum = "DEV.${project.buildInfo.revision}"
}
}
ext.artifact_version = 'NFG'
if (System.getenv().ARTIFACT_VERSION == null) {
artifact_version = "${mod_version}.${project.buildInfo.buildNum}"
}
if (System.getenv().ARTIFACT_VERSION != null) {
artifact_version = "${system.getenv().ARTIFACT_VERSION}"
}
version = "${minecraft_version}-${artifact_version}"
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}, Version: ${version}"
sourceSets {
main {
resources {
srcDirs "src/generated/resources"
//But exclude the cache of the generated data from what gets built
exclude '.cache'
// exclude debug resources, they are for heling us make the mod, not for the actual mod
exclude 'assets/tconstruct/debug'
}
}
}
minecraft {
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
runs {
client {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP,CORE'
// property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP,CORE' enable if you want spam from the scanner.
// Recommended logging level for the console
property 'forge.logging.console.level', 'debug'
// IE uses mixins, remap their mixins to work in dev
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
mods {
tconstruct {
source sourceSets.main
}
}
//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_profiles.json' file
args '--accessToken', project.getProperty('mc_accessToken')
}
}
server {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP,CORE'
// property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP,CORE' enable if you want spam from the scanner.
// Recommended logging level for the console
property 'forge.logging.console.level', 'debug'
// IE uses mixins, remap their mixins to work in dev
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
mods {
tconstruct {
source sourceSets.main
}
}
}
data {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP,CORE'
// property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP,CORE' enable if you want spam from the scanner.
// Recommended logging level for the console
property 'forge.logging.console.level', 'debug'
// IE uses mixins, remap their mixins to work in dev
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
environment 'assetIndex', '{asset_index}'
environment 'assetDirectory', '{assets_root}'
args '--mod', 'tconstruct', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/'), '--existing-mod', 'mantle'
mods {
tconstruct {
source sourceSets.main
}
}
}
}
}
configurations {
deployerJars
}
dependencies {
minecraft 'net.minecraftforge:forge:' + minecraft_version + '-' + forge_version
// would ideally use API for this, but that does not work well with fg.deobf in my understanding
implementation fg.deobf("slimeknights.mantle:Mantle:${minecraft_version}-${mantle_version}")
// compile against the JEI API but do not include it at runtime
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}-common-api:${jei_version}")
compileOnly fg.deobf("mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}")
// at runtime, use the full JEI jar
runtimeOnly fg.deobf("mezz.jei:jei-${minecraft_version}-forge:${jei_version}")
// implementation fg.deobf("mcjty.theoneprobe:TheOneProbe-${minecraft_base_version}:${minecraft_base_version}-${probe_version}")
// compileOnly fg.deobf("com.blamejared.crafttweaker:CraftTweaker-${minecraft_version}:${crt_version}")
compileOnly fg.deobf("blusunrize.immersiveengineering:ImmersiveEngineering:${minecraft_version}-${ie_version}")
// runtimeOnly fg.deobf("curse.maven:MoonlightLib-499980:4983974")
// runtimeOnly fg.deobf("curse.maven:MmmMmmMmmMmm-225738:4410143")
// runtimeOnly fg.deobf("curse.maven:lazy-dfu-forge-460819:4327266")
// runtimeOnly fg.deobf("curse.maven:terrablender-563928:3619749")
// runtimeOnly fg.deobf("curse.maven:biomes-o-plenty-220318:3616582")
// runtimeOnly fg.deobf("curse.maven:terralith-513688:3606078")
compileOnly fg.deobf("curse.maven:diet-443570:4813890")
compileOnly fg.deobf("dev.gigaherz.jsonthings:JsonThings-${minecraft_version}:${json_things_version}")
deployerJars 'org.apache.maven.wagon:wagon-ssh:2.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.mockito:mockito-inline:4.2.0'
testImplementation 'org.assertj:assertj-core:3.21.0'
}
test {
useJUnitPlatform()
}
// process mods.toml to inject variables
def modsTomlSpec = copySpec{
from(sourceSets.main.resources) {
include 'META-INF/mods.toml'
expand 'version': artifact_version,
'loader_range': loader_range,
'minecraft_range': minecraft_range,
'forge_range': forge_range,
'mantle_range': mantle_range,
'jei_range': jei_range,
'json_things_range': json_things_range
}
}
// need to copy into each build directory, unfortunately does not seem easy to do this automatically
def buildPaths = [
"$rootDir/out/production/resources", // IDEA
"$rootDir/bin", // Eclipse
]
// task to add mods.toml to all relevant folders
task replaceResources {
// ensure directory exists, first build likes to fail
new File("${processResources.destinationDir}/META-INF").mkdirs()
// copy for gradle
copy {
outputs.upToDateWhen { false }
with modsTomlSpec
into processResources.destinationDir
}
// copy for IDEs
buildPaths.each { path ->
if (new File(path).exists()) {
copy {
outputs.upToDateWhen { false }
with modsTomlSpec
into path
}
}
}
}
processResources {
exclude 'META-INF/mods.toml'
finalizedBy replaceResources
}
jar {
manifest {
attributes([
"Specification-Title" : "Tinkers Construct",
"Specification-Vendor" : "Slime Knights",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : "${version}",
"Implementation-Vendor" : "Slime Knights",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
}
}
jar.finalizedBy('reobfJar')
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
classifier = 'sources'
}
artifacts {
archives sourcesJar
}
// verify the properties exist.. or initialize.
if (!project.hasProperty("keystore_location")) // keystore location
ext.keystore_location = "."
if (!project.hasProperty("keystore_user_alias")) // keystore user alias
ext.keystore_user_alias = ""
if (!project.hasProperty("sftp_username"))
ext.sftp_username = ""
if (!project.hasProperty("sftp_key"))
ext.sftp_key = ""
if (!project.hasProperty("keystore_user_password")) // keystore user pass
ext.keystore_user_password = ""
if (System.getenv().KSK_PW != null)
ext.keystore_user_password = System.getenv().KSK_PW
task("uploadJars", dependsOn: "build") {
description = "uploads JARs"
if (project.hasProperty("local_maven") || project.hasProperty("sftp_maven")) {
apply plugin: 'maven'
uploadArchives {
repositories {
if (project.hasProperty("local_maven")) {
mavenDeployer {
repository(url: "file://${local_maven}")
}
}
if (project.hasProperty("sftp_maven")) {
repositories.mavenDeployer {
configuration = configurations.deployerJars
repository(url: "sftp://${sftp_maven}") {
authentication(userName: "${sftp_username}", privateKey: "${sftp_key}")
}
}
}
}
}
}
}
// task signUniversal(type: SignJar, dependsOn: 'jar') {
// onlyIf {
// project.hasProperty('jarsigner')
// }
//
// def jarsigner = [:]
//
// if (project.hasProperty('jarsigner'))
// jarsigner = project.jarsigner
//
// alias = 'tcon'
// storePass = jarsigner.storepass
// keyPass = jarsigner.keypass
// keyStore = jarsigner.keystore
// inputFile = jar.archivePath
// outputFile = jar.archivePath
// }
// uploadArchives.dependsOn signUniversal
// build.dependsOn signUniversal
publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
artifact sourcesJar
}
}
repositories {
if (project.hasProperty('DEPLOY_DIR')) {
maven { url DEPLOY_DIR }
}
}
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}