forked from XeKr/xkdeco
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
328 lines (278 loc) · 13 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
buildscript {
repositories {
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
maven { url = 'https://maven.minecraftforge.net' }
maven { url = 'https://maven.parchmentmc.org' }
maven { url = 'https://repo.spongepowered.org/repository/maven-public/' }
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '6.+', changing: true
classpath 'org.parchmentmc:librarian:1.+'
classpath group: 'org.spongepowered', name: 'mixingradle', version: '0.7-SNAPSHOT'
}
}
plugins {
id "me.shedaniel.unified-publishing" version "0.1.+"
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'org.spongepowered.mixin'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
version = "${minecraft_version}-Forge-${mod_version}"
group = "${mod_base_package}" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
//noinspection GroovyUnusedAssignment
archivesBaseName = mod_name
var realVersion = mod_version + '+forge'
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
minecraft {
mappings channel: mappings_channel, version: mappings_version
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
// Currently, this location cannot be changed from the default.
// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
client {
workingDirectory project.file('run_client')
// property 'production', 'true'
property 'forge.logging.console.level', 'debug'
// Export mixin-changed classes
property 'mixin.debug.export', 'true'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// These arguments allow for optional authentication with Mojang servers.
// If you want to authenticate, put these properties in GRADLE_HOME/gradle.properties.
// By default, this is C:\Users\<your username>\.gradle\gradle.properties on Windows or ~/.gradle/gradle.properties on Linux/MacOS.
if (project.hasProperty('mc_uuid')) {
// Your UUID, trimmed / without the dashes
args '--uuid', project.getProperty('mc_uuid')
}
if (project.hasProperty('mc_username')) {
// Your Minecraft in-game username, not email
args '--username', project.getProperty('mc_username')
}
if (project.hasProperty('mc_accessToken')) {
// Your current access token. When it expires, you need to retrieve a new one and regenerate your run configurations.
// You may be able to find it in your .minecraft folder in launcher_accounts.json or launcher_profiles.json.
args '--accessToken', project.getProperty('mc_accessToken')
}
// Add mixin config to runtime
args '-mixin.config=' + project.getProperty('mod_id') + '.mixins.json'
args '-mixin.config=' + project.getProperty('mod_id') + '.data.mixins.json'
mods {
"${mod_id}" {
source sourceSets.main
}
}
}
server {
workingDirectory project.file('run_server')
// property 'production', 'true'
property 'forge.logging.console.level', 'debug'
// Export mixin-changed classes
property 'mixin.debug.export', 'true'
// Add mixin config to runtime
args '-mixin.config=' + project.getProperty('mod_id') + '.mixins.json'
args '-mixin.config=' + project.getProperty('mod_id') + '.data.mixins.json'
mods {
"${mod_id}" {
source sourceSets.main
}
}
}
data {
workingDirectory project.file('run_data')
// property 'production', 'true'
property 'forge.logging.console.level', 'debug'
// Export mixin-changed classes
property 'mixin.debug.export', 'true'
// Add mixin config to runtime
args '-mixin.config=' + project.getProperty('mod_id') + '.mixins.json'
args '-mixin.config=' + project.getProperty('mod_id') + '.data.mixins.json'
// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
mods {
"${mod_id}" {
source sourceSets.main
}
}
}
}
}
// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }
sourceSets.main.resources { srcDir 'src/kiwi_generated/resources' }
repositories {
maven { url = 'https://maven.neoforged.net/releases' }
maven { url "https://maven.su5ed.dev/releases" }
maven { url "https://api.modrinth.com/maven" }
maven {
// saps.dev Maven (KubeJS and Rhino)
url = "https://maven.saps.dev/minecraft"
content {
includeGroup "dev.latvian.mods"
}
}
maven { url "https://maven.shedaniel.me/" }
maven {
// location of the maven that hosts JEI files
name = "Progwml6 maven"
url = "https://dvs1.progwml6.com/files/maven/"
}
maven {
// location of a maven mirror for JEI files, as a fallback
name = "ModMaven"
url = "https://modmaven.dev"
}
maven {
url = "https://www.cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven { url 'https://maven.blamejared.com' }
maven { url = "https://maven.theillusivec4.top/" }
flatDir {
dir 'libs'
}
}
mixin {
add sourceSets.main, "${mod_id}.refmap.json"
// Sets up the mixin config; this gets added to run configurations and the manifest in the final jar
config "${mod_id}.mixins.json"
// config "${mod_id}.data.mixins.json"
// Enables exporting mixin-changed classes to .mixin.out in the run folder
debug.export = true
}
dependencies {
// Specify the version of Minecraft to use. If this is any group other than 'net.minecraft', it is assumed
// that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft "net.neoforged:forge:${minecraft_version}-${forge_version}"
annotationProcessor "org.spongepowered:mixin:${mixin_version}:processor"
compileOnly(annotationProcessor("io.github.llamalad7:mixinextras-common:0.3.2"))
implementation("io.github.llamalad7:mixinextras-forge:0.3.2")
// https://modrinth.com/mod/jei/versions
// 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 for Forge
implementation(fg.deobf("mezz.jei:jei-${minecraft_version}-forge:${jei_version}"))
implementation fg.deobf("dev.architectury:architectury-forge:${architectury_version}")
implementation fg.deobf("me.shedaniel:RoughlyEnoughItems-forge:${rei_version}")
compileOnly "me.shedaniel:REIPluginCompatibilities-forge-annotations:12.+"
implementation(annotationProcessor(fg.deobf("maven.modrinth:kiwi:${project.kiwi_version}+forge")))
jarJar("maven.modrinth:kiwi:${project.kiwi_version}+forge") {
jarJar.ranged(it, "[${project.kiwi_version},)")
}
implementation(fg.deobf("me.shedaniel.cloth:cloth-config-forge:${project.cloth_config_version}"))
// https://modrinth.com/mod/jade/versions
implementation fg.deobf("maven.modrinth:jade:11.9.4+forge")
// implementation fg.deobf("maven.modrinth:uBKACKpl:qk7bNI3G") //shimmer
implementation fg.deobf("maven.modrinth:debugutils:1.20.1-1.0.3-forge")
// https://modrinth.com/mod/modernfix/versions
implementation fg.deobf("maven.modrinth:modernfix:j5VhGcov")
// https://modrinth.com/mod/ferrite-core/versions
implementation fg.deobf("maven.modrinth:ferrite-core:DG5Fn9Sz")
implementation fg.deobf("maven.modrinth:suggestion-tweaker:1.20-1.5.1+forge")
implementation fg.deobf("dev.su5ed.sinytra.fabric-api:fabric-api:0.92.2+1.11.8+1.20.1")
implementation fg.deobf("dev.su5ed.sinytra.fabric-api:fabric-data-generation-api-v1:12.3.4")
implementation fg.deobf("dev.su5ed.sinytra.fabric-api:fabric-transfer-api-v1:3.3.5")
implementation fg.deobf("dev.su5ed.sinytra:fabric-loader:2.7.4+0.15.3+1.20.1")
}
processResources {
from('src/main/java') {
include '**/*.json'
}
doLast {
def jsonMinifyStart = System.currentTimeMillis()
def jsonMinified = 0
def jsonBytesSaved = 0
fileTree(dir: outputs.files.asPath, include: '**/*.json').each {
jsonMinified++
def oldLength = it.length()
//noinspection UnnecessaryQualifiedReference
it.text = groovy.json.JsonOutput.toJson(new groovy.json.JsonSlurper().parse(it))
jsonBytesSaved += oldLength - it.length()
}
jsonBytesSaved = Math.round(jsonBytesSaved / 1024)
println('Minified ' + jsonMinified + ' json files. Saved ' + jsonBytesSaved + 'KB. Took ' + (System.currentTimeMillis() - jsonMinifyStart) + 'ms.')
}
}
tasks.jarJar.configure {
archiveClassifier = ''
exclude("/assets/${project.mod_id}/lang/en_us.existing.json")
exclude("/assets/test")
exclude("/org/teacon/xkdeco/data")
exclude("/org/teacon/xkdeco/mixin/data")
exclude("/.cache")
exclude("/xkdeco.data.mixins.json")
finalizedBy('reobfJarJar')
}
jar {
archiveClassifier = 'slim'
manifest {
attributes(["Specification-Title" : mod_id,
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : realVersion,
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")])
}
preserveFileTimestamps = false
reproducibleFileOrder = true
finalizedBy('reobfJar')
}
// Example configuration to allow publishing using the maven-publish plugin
// This is the preferred method to reobfuscate your jar file
jar.finalizedBy('reobfJar')
// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing
// publish.dependsOn('reobfJar')
publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
}
}
repositories {
maven {
url "file://${project.projectDir}/mcmodsrepo"
}
}
}
unifiedPublishing {
project {
displayName = "[Forge $project.supported_version] $project.mod_version"
version = realVersion // Optional, Inferred from project by default
changelog = file("CHANGELOG.md").exists() ? file("CHANGELOG.md").text : ""
releaseType = project.release_type // Optional, use "release", "beta" or "alpha"
gameVersions = ["1.20.1"]
gameLoaders = ["forge", "neoforge"]
mainPublication tasks.jarJar // Declares the publicated jar
if (System.getenv("CURSE_TOKEN") != null) {
curseforge {
token = System.getenv("CURSE_TOKEN")
id = "497637" // Required, must be a string, ID of CurseForge project
relations { // Optional, Inferred from the relations above by default
// includes "kiwi"
}
}
}
if (System.getenv("CURSE_TOKEN") != null) {
modrinth {
token = System.getenv("MODRINTH_TOKEN")
id = "XlwMlNhH" // Required, must be a string, ID of Modrinth project
relations { // Optional, Inferred from the relations above by default
// includes "kiwi"
}
}
}
}
}