forked from SkyblockerMod/Skyblocker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
410 lines (342 loc) · 13.2 KB
/
build.gradle
File metadata and controls
410 lines (342 loc) · 13.2 KB
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
403
404
405
406
407
408
409
410
plugins {
// Building
id 'fabric-loom' version "${loom_version}"
id "de.hysky.skyblocker.annotation-processor"
id "com.diffplug.spotless" version "${spotless_version}"
id "checkstyle"
// Publishing
id 'maven-publish'
id "me.modmuss50.mod-publish-plugin" version "${mod_publish_plugin_version}"
}
version = "${project.mod_version}+${project.minecraft_version}"
group = project.maven_group
repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
flatDir {
dirs 'libs'
}
maven {
name = 'Maven Central'
url = 'https://repo.maven.apache.org/maven2'
}
// For ModMenu and EMI
exclusiveContent {
forRepository {
maven { url = "https://maven.terraformersmc.com/releases" }
}
filter {
includeGroup "com.terraformersmc"
includeGroup "dev.emi"
}
}
// For REI
exclusiveContent {
forRepository {
maven { url = "https://maven.shedaniel.me/" }
}
filter {
includeGroup "me.shedaniel"
includeGroup "me.shedaniel.cloth"
includeGroup "dev.architectury"
}
}
// For JEI
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
// YACL
maven {
url = "https://maven.isxander.dev/releases"
content {
includeGroup "dev.isxander"
includeGroup "org.quiltmc.parsers"
}
}
// For Minecraft snapshots
maven {
url = "https://maven.isxander.dev/snapshots"
content {
includeGroup "dev.isxander"
}
}
// For Discord RPC
exclusiveContent {
forRepository {
maven {
name = "meteor-maven"
url = "https://maven.meteordev.org/releases"
}
}
filter {
includeGroup "meteordevelopment"
}
}
// For NEU repo parser
exclusiveContent {
forRepository {
maven { url = "https://repo.nea.moe/releases" }
}
filter {
includeGroup "moe.nea"
}
}
maven {
url = "https://maven.azureaaron.net/releases"
content {
includeGroup "net.azureaaron"
}
}
maven {
url = "https://maven.azureaaron.net/snapshots"
content {
includeGroup "net.azureaaron"
}
}
maven {
url = "https://maven.notenoughupdates.org/releases"
content {
includeGroup "org.notenoughupdates.moulconfig"
}
}
//mavenLocal()
}
dependencies {
testImplementation "net.fabricmc:fabric-loader-junit:${project.loader_version}"
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
//Layered Yarn & Mojmap - used to fill in intermediary names
mappings loom.layered {
//Using Mojmap breaks runClient, so uncomment only for snapshots when temp mappings are needed
//officialMojangMappings()
mappings("net.fabricmc:yarn:${project.yarn_mappings}:v2")
}
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Loom does not always add this
implementation "ca.weblite:java-objc-bridge:1.1"
// Fabric API
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"
// Dandelion
include modImplementation("net.azureaaron:dandelion:${project.dandelion_version}")
// YACL
include modImplementation("dev.isxander:yet-another-config-lib:${project.yacl_version}-fabric")
// MoulConfig - Dandelion shades it in already
//modImplementation("org.notenoughupdates.moulconfig:${project.moulconfig_flavour}:${project.moulconfig_version}")
// HM API (Hypixel Mod API Library)
include modImplementation("net.azureaaron:hm-api:${project.hm_api_version}")
// Mod Menu
modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}"
// REI
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei_version}") {
exclude group: "net.fabricmc.fabric-api" //Stop this from importing an old version of FAPI that crashes everything
}
//modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"
// EMI
modCompileOnly "dev.emi:emi-fabric:${project.emi_version}:api"
//modLocalRuntime "dev.emi:emi-fabric:${project.emi_version}"
// JEI (Using modrinth repo since official release is in mojmap and doesn't work)
modCompileOnly "maven.modrinth:jei:${project.jei_version}-fabric"
//modRuntimeOnly "maven.modrinth:jei:${project.jei_version}-fabric"
compileOnly "com.demonwav.mcdev:annotations:${project.mcdev_annotations_version}"
include modImplementation("meteordevelopment:discord-ipc:1.1")
// NEU RepoParser
include implementation("moe.nea:neurepoparser:${project.repoparser_version}")
// Networth Calculator (https://github.com/AzureAaron/networth-calculator)
include implementation("net.azureaaron:networth-calculator:${project.networth_calculator_version}")
// Legacy Item DFU
include implementation("net.azureaaron:legacy-item-dfu:${project.legacy_item_dfu_version}")
// JGit used pull data from the NEU item repo
include implementation("org.eclipse.jgit:org.eclipse.jgit:${project.jgit_version}")
// Apache Commons Math
include implementation("org.apache.commons:commons-math3:${project.commons_math_version}")
// Apache Commons Text
include implementation("org.apache.commons:commons-text:${project.commons_text_version}")
// Fabric Language Kotlin for using MoulConfig - we are still a Java-exclusive mod
modImplementation("net.fabricmc:fabric-language-kotlin:${project.flk_version}")
}
loom {
accessWidenerPath = file("src/main/resources/skyblocker.accesswidener")
mixin {
useLegacyMixinAp = false
}
}
fabricApi {
configureTests {
createSourceSet = true
modId = "skyblocker-test"
enableGameTests = false
eula = true
}
}
base {
archivesName = project.archives_base_name
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
tasks.withType(JavaCompile).configureEach {
it.options.release = 21
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
jar {
from("LICENSE") {
rename { "${it}_${base.archivesName.get()}" }
}
}
test {
useJUnitPlatform()
systemProperty("IS_TEST_ENV", "true")
}
spotless {
java {
removeUnusedImports()
//indentWithTabs() // TODO: turn on when more files are converted to tabs
trimTrailingWhitespace()
endWithNewline()
lineEndings = com.diffplug.spotless.LineEnding.UNIX
}
json {
target 'src/**/lang/en_us.json'
targetExclude 'src/**/generated/**'
gson()/*.sortByKeys()*/.indentWithSpaces(2) // TODO: turn on `sortByKeys` in the future
// Note: a stem is a part of a key between dots, e.g. "skyblocker.config.chat" has three stems: "skyblocker", "config", and "chat".
replaceRegex \
"Separate different first stems",
// Explanation of the regex:
// `^( "`: matches the start of a line, begins capture group 1, and matches two spaces and a double quote
// `([^."]++)`: captures the first stem (everything before the first dot) in group 2
// `(?:\.[^"]++)?`: optionally matches a second stem (everything after the first stem before the next double quote)
// `": "`: matches the end of the key and the start of the value
// `(?:[^\\"]++|\\.)*+`: matches the value, which can be anything except a slash or double quote, special processing here for escaped characters
// `",)$`: matches the end of the line, capturing the whole line in group 1
// `\n`: matches a newline character
// `^(?= "(?!\2[."]))`: positive lookahead to ensure the next line starts with two spaces and a key that does not start with the same first stem (group 2) followed by a dot or a double quote
// The last `[."]` is to ensure that the `\2` in the negative lookahead is being matched against an entire stem, not just the starting part of a stem.
/^( "([^."]++)(?:\.[^"]++)?": "(?:[^\\"]++|\\.)*+",)$\n^(?= "(?!\2[."]))/,
'$1\n\n'
replaceRegex \
"Separate different second stems if the first stem is skyblocker",
// The main difference is that the second and remaining stems are optional, allowing matching lines with only one stem (in this case "skyblocker"), and separating it from other keys that start with "skyblocker.[whatever]".
// This treats keys with only one stem as if they have an empty second stem, which is considered different from any other second stem, therefore inserting a newline after them.
/^( "skyblocker(?:\.([^."]++)(?:\.[^"]++)?)?": "(?:[^\\"]++|\\.)*+",)$\n^(?= "skyblocker\.(?!\2[."]))/,
'$1\n\n'
replaceRegex \
"Separate different thrid stems if the first two stems are skyblocker.config",
// The third and remaining stems are optional, allowing matching lines with only two stems (in this case "skyblocker.config"), and separating it from other keys that start with "skyblocker.config.[whatever]".
/^( "skyblocker\.config(?:\.([^."]++)(?:\.[^"]++)?)?": "(?:[^\\"]++|\\.)*+",)$\n^(?= "skyblocker\.config\.(?!\2[."]))/,
'$1\n\n'
final List<String> excludeCategories = ["debug", "eventNotifications", "quickNav", "shortcutToKeybindsSettings", "title"]
final String excludeCategoriesLookahead = /(?!(?:${excludeCategories.join('|')})(?=[."]))/
replaceRegex \
"Separate different fouth stems if the first three stems are skyblocker.config.[configCategory]",
// A negative lookahead is used before the third stem to exclude the above list of third stems.
// The fourth and remaining stems are optional, allowing matching lines with only three stems (such as "skyblocker.config.[configCategory]"), and separating them from other keys that start with "skyblocker.config.[configCategory].[whatever]".
// This treats keys with only three stems as if they have an empty fourth stem, which is considered different from any other fourth stem, therefore inserting a newline after them.
// Specifically, the `(?!\3[."])` part ensures that the next line does not start with the same fourth stem (group 3) followed by a dot or a double quote.
// If the previous line does not have a fourth stem, group 3 will be empty, and `(?!\3[."])` will attempt to match a dot or a double quote, effectively trying to apply a negative look ahead against an empty fourth stem, which will always succeed against "skyblocker.config.[configCategory].[whatever]".
/^( "skyblocker\.config\.${excludeCategoriesLookahead}([^."]++)(?:\.([^."]++)(?:\.[^"]++)?)?": "(?:[^\\"]++|\\.)*+",)$\n^(?= "skyblocker\.config\.\2\.(?!\3[."]))/,
'$1\n\n'
}
groovyGradle {
target 'src/**/*.gradle', '*.gradle', 'gradle/*.gradle'
greclipse().configProperties \
'groovy.formatter.multiline.indentation=2', // Default
'groovy.formatter.line.maxlength=999',
'groovy.formatter.longListLength=999',
'groovy.formatter.remove.unnecessary.semicolons=true'
}
}
checkstyle {
toolVersion = "${checkstyle_version}"
configFile = rootProject.file("checkstyle.xml")
}
def truncateChangelog = { String text, int limit ->
if (!text) return ''
def lines = text.readLines()
def sb = new StringBuilder()
for (line in lines) {
def toAdd = (sb.length() == 0 ? "" : "\n") + line
if (sb.length() + toAdd.length() > limit) {
sb.append("\nand more!")
break
}
sb.append(toAdd)
}
return sb.toString()
}
publishMods {
file = remapJar.archiveFile
changelog = System.getenv('CHANGELOG_HIGHLIGHT')
version = "v${project.version}"
displayName = "Skyblocker ${mod_version} for ${minecraft_version}"
modLoaders.add("fabric")
type = project.version.contains("alpha") ? ALPHA : project.version.contains("beta") ? BETA : STABLE
github {
accessToken = System.getenv("GITHUB_TOKEN")
repository = "SkyblockerMod/Skyblocker"
commitish = System.getenv("REF_NAME")
tagName = publishMods.version
changelog = System.getenv("CHANGELOG")
}
modrinth {
accessToken = System.getenv("MODRINTH_TOKEN")
projectId = modrinth_id
minecraftVersions.add(minecraft_version)
announcementTitle = "<:modrinth:1237114573354438696> Download from Modrinth"
requires("fabric-api", "fabric-language-kotlin")
optional("modmenu", "rei", "emi", "jei")
embeds("yacl")
}
curseforge {
accessToken = System.getenv("CURSEFORGE_TOKEN")
projectId = curseforge_id
minecraftVersions.add(minecraft_version)
announcementTitle = "<:curseforge:900697838453936149> Download from CurseForge"
projectSlug = "skyblocker"
requires("fabric-api", "fabric-language-kotlin")
optional("roughly-enough-items", "emi", "jei")
embeds("yacl")
}
discord {
webhookUrl = System.getenv("DISCORD_WEBHOOK")
username = "Changelog"
content = changelog.map {
def header = "<@&1134565945482948638>\n## Skyblocker v${mod_version} for ${minecraft_version}\n"
def truncatedChangelog = truncateChangelog(it, 1850)
header + truncatedChangelog
}
setPlatforms(publishMods.platforms.curseforge, publishMods.platforms.modrinth)
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}