-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
714 lines (605 loc) · 19.9 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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
buildscript {
repositories {
maven {
name = 'Babric'
url = 'https://maven.glass-launcher.net/babric'
}
maven {
name "Fabric Repository"
url "https://maven.fabricmc.net"
}
mavenCentral()
}
dependencies {
classpath "cuchaz:enigma-cli:${project.enigma_version}"
classpath "babric:stitch:${project.stitch_version}"
classpath "de.undercouch:gradle-download-task:4.1.1"
classpath "net.fabricmc.unpick:unpick:${project.unpick_version}"
classpath "net.fabricmc.unpick:unpick-format-utils:${project.unpick_version}"
classpath "net.fabricmc:name-proposal:${project.name_proposal_version}"
classpath "net.fabricmc:tiny-remapper:0.8.6"
}
}
plugins {
id "java" // for constants, packages, javadoc
id "de.undercouch.download" version "4.1.2"
id "maven-publish"
id "com.diffplug.spotless" version "6.4.2"
id "net.fabricmc.filament" version "0.4.0"
}
def minecraft_version = "b1.7.3"
filament {
minecraftVersion = minecraft_version
minecraftVersionManifestUrl = "https://babric.github.io/manifest-polyfill/version_manifest_v2.json"
}
// Fetch build number from BuildBot
def build_number = project.hasProperty("build_id")? project.build_id : "local"
def yarnVersion = "${minecraft_version}+$build_number"
version = yarnVersion
def ENV = System.getenv()
if (ENV.BRANCH_NAME) {
def branch = ENV.BRANCH_NAME.substring(ENV.BRANCH_NAME.lastIndexOf("/") + 1)
if (minecraft_version != branch) {
throw new IllegalStateException("Branch name (${branch}) does not match the mc version (${minecraft_version})")
}
}
repositories {
mavenCentral()
maven {
name "Babric Repository"
url "https://maven.glass-launcher.net/babric/"
}
maven {
name "Fabric Repository"
url "https://maven.fabricmc.net"
}
maven {
name "Mojang"
url "https://libraries.minecraft.net/"
}
mavenLocal()
}
configurations {
asm
enigmaRuntime {
extendsFrom asm
}
javadocClasspath
decompileClasspath
mappingPoetJar {
transitive = false
}
mappingPoet {
extendsFrom mappingPoetJar
extendsFrom asm
transitive = true
}
unpick {
extendsFrom asm
}
}
def unpickMetaFile = file("unpick-definitions/unpick.json")
dependencies {
enigmaRuntime "cuchaz:enigma-swing:${project.enigma_version}"
enigmaRuntime "net.fabricmc:name-proposal:${project.name_proposal_version}"
javadocClasspath "net.fabricmc:fabric-loader:${project.fabric_loader_version}"
javadocClasspath "org.jetbrains:annotations:${project.jetbrains_annotations_version}"
javadocClasspath "com.google.code.findbugs:jsr305:3.0.2" // for some other jsr annotations
decompileClasspath "net.fabricmc:cfr:${project.cfr_version}"
mappingPoetJar "net.fabricmc:mappingpoet:${project.mappingpoet_version}"
unpick "net.fabricmc.unpick:unpick-cli:${project.unpick_version}"
asm "org.ow2.asm:asm:${project.asm_version}"
asm "org.ow2.asm:asm-tree:${project.asm_version}"
asm "org.ow2.asm:asm-commons:${project.asm_version}"
asm "org.ow2.asm:asm-util:${project.asm_version}"
}
def setupGroup = "jar setup"
def yarnGroup = "yarn"
def buildMappingGroup = "mapping build"
def mapJarGroup = "jar mapping"
def mappingsDir = file("mappings")
def cacheFilesMinecraft = file(".gradle/minecraft")
def tempDir = file(".gradle/temp")
def clientIntermediaryJar = new File(cacheFilesMinecraft, "${minecraft_version}-client-intermediary.jar")
def serverIntermediaryJar = new File(cacheFilesMinecraft, "${minecraft_version}-server-intermediary.jar")
def intermediaryJar = file("${minecraft_version}-intermediary.jar")
def unpickedJar = file("${minecraft_version}-intermediary-unpicked.jar")
def namedJar = file("${minecraft_version}-named.jar")
def libs = new File("build/libs/")
def minecraftLibraries = tasks.minecraftLibraries.files
import cuchaz.enigma.command.CheckMappingsCommand
import cuchaz.enigma.command.ConvertMappingsCommand
import cuchaz.enigma.command.MapSpecializedMethodsCommand
import net.fabricmc.filament.task.MapJarTask
import net.fabricmc.filament.task.minecraft.MergeMinecraftTask
import net.fabricmc.nameproposal.MappingNameCompleter
import net.fabricmc.stitch.commands.CommandFixNesting
import net.fabricmc.stitch.commands.CommandMergeTiny
import net.fabricmc.stitch.commands.tinyv2.CommandMergeTinyV2
import java.util.zip.GZIPOutputStream
task downloadIntermediary(type: Download) {
group = buildMappingGroup
def url = "https://github.com/babric/intermediary/raw/master/mappings/${minecraft_version}.tiny"
src com.google.common.net.UrlEscapers.urlFragmentEscaper().escape(url)
dest new File(cacheFilesMinecraft, "${minecraft_version}-intermediary.tiny")
}
task downloadIntermediaryV2(type: Download) {
group = buildMappingGroup
def url = "https://maven.glass-launcher.net/babric/babric/intermediary/${minecraft_version}/intermediary-${minecraft_version}-v2.jar"
src com.google.common.net.UrlEscapers.urlFragmentEscaper().escape(url)
dest new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-v2.jar")
def output = new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-v2.tiny")
outputs.file output
doLast {
copy {
from({ zipTree(downloadIntermediaryV2.dest) }) {
from "mappings/mappings.tiny"
rename "mappings.tiny", "../${output.name}"
}
into output.parentFile
}
}
}
task mapClientIntermediaryJar(type: MapJarTask, dependsOn: [downloadIntermediary, downloadMinecraftClientJar]) {
group = mapJarGroup
output = clientIntermediaryJar
input = downloadMinecraftClientJar.outputFile
mappings = downloadIntermediary.dest
classpath.from minecraftLibraries
from = "client"
to = "intermediary"
}
task mapServerIntermediaryJar(type: MapJarTask, dependsOn: [downloadIntermediary, downloadMinecraftServerJar]) {
group = mapJarGroup
output = serverIntermediaryJar
input = downloadMinecraftServerJar.outputFile
mappings = downloadIntermediary.dest
classpath.from minecraftLibraries
from = "server"
to = "intermediary"
}
mergeMinecraftJars.enabled = false
task mergeIntermediaryJars(type: MergeMinecraftTask, dependsOn: [mapClientIntermediaryJar, mapServerIntermediaryJar]) {
clientJar = clientIntermediaryJar
serverJar = serverIntermediaryJar
outputFile = intermediaryJar
doLast {
CommandFixNesting.run(intermediaryJar)
}
}
task yarn(dependsOn: "unpickIntermediaryJar", type: EnigmaTask) {
group = yarnGroup
jar = unpickedJar
mappings = mappingsDir
}
task yarnWithoutUnpick(dependsOn: mergeIntermediaryJars, type: EnigmaTask) {
group = yarnGroup
jar = intermediaryJar
mappings = mappingsDir
}
task checkMappings(dependsOn: mergeIntermediaryJars) {
group = buildMappingGroup
inputs.dir mappingsDir
doLast {
logger.lifecycle(":checking mappings")
String[] args = [
intermediaryJar.getAbsolutePath(),
mappingsDir.getAbsolutePath()
]
try {
new CheckMappingsCommand().run(args)
} catch (IllegalStateException ignored) {
// just print, don"t fail the task
}
}
}
task buildYarnTiny(dependsOn: mergeIntermediaryJars, type: WithV2FileOutput) {
group = buildMappingGroup
inputs.dir mappingsDir
if (!libs.exists()) {
libs.mkdirs()
}
v1Output = new File(tempDir, "biny-mappings.tiny")
v2Output = new File(tempDir, "biny-mappings-v2.tiny")
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":generating tiny mappings")
new MapSpecializedMethodsCommand().run(
intermediaryJar.getAbsolutePath(),
"enigma",
mappingsDir.getAbsolutePath(),
"tinyv2:intermediary:named",
v2Output.getAbsolutePath()
)
new ConvertMappingsCommand().run(
"tinyv2",
v2Output.getAbsolutePath(),
"tiny:intermediary:named",
v1Output.getAbsolutePath())
}
}
task mergeTiny(dependsOn: ["buildYarnTiny", "downloadIntermediary"], type: FileOutput) {
group = buildMappingGroup
def yarnTinyInput = buildYarnTiny.v1Output
def intermediaryTinyInput = downloadIntermediary.dest
output = new File(tempDir, "mappings.tiny")
outputs.file(output)
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":merging yarn and intermediary")
String[] args = [
intermediaryTinyInput.getAbsolutePath(),
yarnTinyInput.getAbsolutePath(),
output.getAbsolutePath()
]
output.delete()
new CommandMergeTiny().run(args)
}
}
task tinyJar(type: Jar, dependsOn: mergeTiny) {
group = buildMappingGroup
outputs.upToDateWhen { false }
archiveFileName = "biny-${yarnVersion}.jar"
destinationDirectory.set(file("build/libs"))
classifier = ""
from(mergeTiny.output) {
rename { "mappings/mappings.tiny" }
}
manifest {
attributes("Minecraft-Version-Id": minecraft_version)
}
}
task compressTiny(dependsOn: [tinyJar, mergeTiny], type: FileOutput) {
group = buildMappingGroup
def outputFile = new File(libs, "biny-tiny-${yarnVersion}.gz")
outputs.file(outputFile)
output = outputFile
def inputFile = mergeTiny.output
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":compressing tiny mappings")
def buffer = new byte[1024]
def fileOutputStream = new FileOutputStream(outputFile)
def outputStream = new GZIPOutputStream(fileOutputStream)
def fileInputStream = new FileInputStream(inputFile)
def length
while ((length = fileInputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length)
}
fileInputStream.close()
outputStream.finish()
outputStream.close()
}
}
clean.doFirst {
delete tempDir, cacheFilesMinecraft
}
tasks.build.dependsOn "compressTiny", "tinyJar", "v2UnmergedYarnJar", "v2MergedYarnJar", "javadocJar"
combineUnpickDefinitions {
group = "unpick"
input = file("unpick-definitions")
output = new File(tempDir, "definitions.unpick")
}
remapUnpickDefinitionsIntermediary {
dependsOn buildYarnTiny
group = "unpick"
output = new File(tempDir, "intermediary-definitions.unpick")
mappings = buildYarnTiny.v2Output
}
task unpickIntermediaryJar(type: JavaExec, dependsOn: [mergeIntermediaryJars, "constantsJar", remapUnpickDefinitionsIntermediary]) {
outputs.upToDateWhen { false }
group "unpick"
mainClass = "daomephsta.unpick.cli.Main"
systemProperty "java.util.logging.config.file", file("unpick-logging.properties")
classpath configurations.unpick
doFirst {
args intermediaryJar.absolutePath, unpickedJar.absolutePath, remapUnpickDefinitionsIntermediary.output.get().asFile.absolutePath, constantsJar.archiveFile.get().asFile.absolutePath
minecraftLibraries.files.forEach {
args it.absolutePath
}
}
}
// Setup the build for the unpicked constants
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
tasks.withType(JavaCompile).configureEach {
it.options.encoding = "UTF-8"
}
sourceSets {
constants
packageDocs // package info files
}
spotless {
java {
licenseHeaderFile(rootProject.file("HEADER"))
}
}
task constantsJar(type: Jar) {
from sourceSets.constants.output
archiveClassifier = "constants"
}
task sourcesJar(type: Jar, dependsOn: classes) {
archiveClassifier = "sources"
from sourceSets.constants.allSource
}
// Only build jars for package infos if we need to actually expose stuff like annotation in the future.
build.dependsOn constantsJar
task insertAutoGeneratedEnumMappings(dependsOn: [buildYarnTiny, mergeIntermediaryJars], type: FileOutput) {
group = buildMappingGroup
File noEnumV2 = buildYarnTiny.v2Output
output = new File(tempDir, "unmerged-named-v2-with-enum.tiny")
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":seeking auto-mappable fields for unmerged mappings")
MappingNameCompleter.completeNames(
intermediaryJar.toPath(),
noEnumV2.toPath(),
downloadIntermediary.dest.toPath(),
output.toPath()
)
}
}
task mergeV2(dependsOn: ["v2UnmergedYarnJar", "downloadIntermediaryV2"], type: FileOutput) {
output = new File(tempDir, "merged-v2.tiny")
outputs.upToDateWhen { false }
doLast {
logger.lifecycle(":merging yarn and intermediary v2")
String[] args = [
new File(cacheFilesMinecraft, "${minecraft_version}-intermediary-v2.tiny"),
insertAutoGeneratedEnumMappings.output.getAbsolutePath(),
output.getAbsolutePath(),
]
new CommandMergeTinyV2().run(args)
}
}
task v2UnmergedYarnJar(dependsOn: [insertAutoGeneratedEnumMappings, combineUnpickDefinitions], type: Jar) {
def mappings = insertAutoGeneratedEnumMappings.output
group = "mapping build"
outputs.upToDateWhen { false }
archiveFileName = "biny-${yarnVersion}-v2.jar"
from(file(mappings)) {
rename mappings.name, "mappings/mappings.tiny"
}
from(combineUnpickDefinitions.output) {
rename combineUnpickDefinitions.output.get().asFile.name, "extras/definitions.unpick"
}
from(file(unpickMetaFile)) {
expand version: project.unpick_version
rename unpickMetaFile.name, "extras/unpick.json"
}
destinationDirectory.set(file("build/libs"))
manifest {
attributes("Minecraft-Version-Id": minecraft_version)
}
}
task v2MergedYarnJar(dependsOn: ["mergeV2"], type: Jar) {
def mappings = mergeV2.output
group = "mapping build"
outputs.upToDateWhen { false }
archiveFileName = "biny-${yarnVersion}-mergedv2.jar"
from(file(mappings)) {
rename mappings.name, "mappings/mappings.tiny"
}
from(combineUnpickDefinitions.output) {
rename combineUnpickDefinitions.output.get().asFile.name, "extras/definitions.unpick"
}
from(file(unpickMetaFile)) {
expand version: project.unpick_version
rename unpickMetaFile.name, "extras/unpick.json"
}
destinationDirectory.set(file("build/libs"))
manifest {
attributes("Minecraft-Version-Id": minecraft_version)
}
}
task mapNamedJar(type: MapJarTask, dependsOn: ["mergeV2", "unpickIntermediaryJar"]) {
group = mapJarGroup
output = namedJar
input = unpickedJar
mappings = mergeV2.output
classpath.from minecraftLibraries
from = "intermediary"
to = "named"
classMappings = [
"javax/annotation/Nullable" : "org/jetbrains/annotations/Nullable",
"javax/annotation/Nonnull" : "org/jetbrains/annotations/NotNull",
"javax/annotation/concurrent/Immutable": "org/jetbrains/annotations/Unmodifiable"
]
}
def mcLibsDir = file("build/tmp/mclibs")
// Task to copy all the mc libs into a single directory.
task syncDependencies(type: Sync) {
from minecraftLibraries
into mcLibsDir
}
def fakeSourceDir = file(".gradle/temp/fakeSource")
task genFakeSource(type: JavaExec, dependsOn: ["mergeV2", "mapNamedJar", syncDependencies]) {
group = "javadoc generation"
outputs.upToDateWhen { false }
mainClass = "net.fabricmc.mappingpoet.Main"
classpath configurations.mappingPoet
// use merged v2 so we have all namespaces in jd
args mergeV2.output.getAbsolutePath(), namedJar.getAbsolutePath(), fakeSourceDir.getAbsolutePath(), mcLibsDir.getAbsolutePath()
doLast {
logger.lifecycle ":Fake source generated"
}
}
task decompileCFR(type: JavaExec, dependsOn: [mapNamedJar]) {
mainClass = "org.benf.cfr.reader.Main"
args namedJar.getAbsolutePath(), "--outputdir", file("namedSrc").absolutePath
doFirst {
file("namedSrc").deleteDir()
classpath.from configurations.decompileClasspath
classpath.from minecraftLibraries
}
}
javadoc {
dependsOn genFakeSource
group = "javadoc generation"
outputs.upToDateWhen { false }
def mappingPoetJar = project.provider { zipTree configurations.mappingPoetJar.singleFile }
failOnError = false
maxMemory = "2G"
// verbose = true // enable to debug
options {
// verbose() // enable to debug
source = "17"
encoding = "UTF-8"
charSet = "UTF-8"
memberLevel = JavadocMemberLevel.PRIVATE
splitIndex true
tags(
"apiNote:a:API Note:",
"implSpec:a:Implementation Requirements:",
"implNote:a:Implementation Note:"
)
taglets "net.fabricmc.mappingpoet.jd.MappingTaglet"
// taglet path, header, extra stylesheet settings deferred
it.use()
addBooleanOption "-allow-script-in-comments", true
addBooleanOption "-ignore-source-errors", true
links(
"https://guava.dev/releases/31.1-jre/api/docs/",
"https://www.javadoc.io/doc/com.google.code.gson/gson/2.10/",
"https://logging.apache.org/log4j/2.x/log4j-api/apidocs/",
"https://www.slf4j.org/apidocs/",
"https://javadoc.io/doc/org.jetbrains/annotations/${project.jetbrains_annotations_version}/",
"https://javadoc.lwjgl.org/",
"https://fastutil.di.unimi.it/docs/",
"https://javadoc.scijava.org/JOML/",
"https://netty.io/4.1/api/",
"https://www.oshi.ooo/oshi-core-java11/apidocs/",
"https://java-native-access.github.io/jna/5.12.1/javadoc/",
"https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/",
"https://jopt-simple.github.io/jopt-simple/apidocs/",
"https://solutions.weblite.ca/java-objective-c-bridge/docs/",
"https://commons.apache.org/proper/commons-logging/apidocs/",
"https://commons.apache.org/proper/commons-lang/javadocs/api-release/",
"https://commons.apache.org/proper/commons-io/apidocs/",
"https://commons.apache.org/proper/commons-codec/archives/1.15/apidocs/",
"https://commons.apache.org/proper/commons-compress/apidocs/",
"https://hc.apache.org/httpcomponents-client-4.5.x/current/httpclient/apidocs/",
"https://maven.fabricmc.net/docs/fabric-loader-${project.fabric_loader_version}/",
"https://docs.oracle.com/en/java/javase/17/docs/api/"
)
// https://docs.oracle.com/en/java/javase/17/docs/specs/man/javadoc.html#additional-options-provided-by-the-standard-doclet
addBooleanOption "Xdoclint:html", true
addBooleanOption "Xdoclint:syntax", true
addBooleanOption "Xdoclint:reference", true
addBooleanOption "Xdoclint:accessibility", true
}
source fileTree(fakeSourceDir) + sourceSets.constants.allJava + sourceSets.packageDocs.allJava
classpath = configurations.javadocClasspath.plus minecraftLibraries
doLast {
project.copy {
from mappingPoetJar
include "copy_on_click.js"
into javadoc.outputDirectory
}
}
doFirst {
// lazy setting
options {
tagletPath configurations.mappingPoet.files.toList()
header mappingPoetJar.get().filter { it.name == "javadoc_header.txt" }.singleFile.text.trim()
// cannot include line breaks
addFileOption "-add-stylesheet", mappingPoetJar.get().filter { it.name == "forms.css" }.singleFile
}
}
}
task javadocJar(type: Jar, dependsOn: ["javadoc"]) {
group = "javadoc generation"
from javadoc.destinationDir
archiveVersion.set yarnVersion
archiveClassifier = "javadoc"
}
generatePackageInfoMappings {
dependsOn mergeIntermediaryJars
inputJar = intermediaryJar
packageName = "net/minecraft/unused/packageinfo/"
outputDir = file("mappings/net/minecraft/unused/packageinfo")
}
javadocLint {
group = "javadoc generation"
mappingDirectory = file("mappings")
}
check.dependsOn javadocLint
publishing {
publications {
maven(MavenPublication) {
groupId "net.glasslauncher"
artifactId "biny"
version yarnVersion
artifact(compressTiny.output) {
classifier "tiny"
builtBy compressTiny
}
artifact(tinyJar)
artifact(v2UnmergedYarnJar) {
classifier "v2"
}
artifact(v2MergedYarnJar) {
classifier "mergedv2"
}
artifact(constantsJar) {
classifier "constants"
}
artifact sourcesJar
artifact javadocJar
}
}
repositories {
if (project.hasProperty("glass_maven_url")) {
maven {
url project.glass_maven_url
credentials {
username project.glass_maven_username
password project.glass_maven_password
}
}
}
}
}
// A task to ensure that the version being released has not already been released.
task checkVersion {
doFirst {
def xml = new URL("https://maven.glass-launcher.net/releases/net/glasslauncher/biny/maven-metadata.xml").text
def metadata = new XmlSlurper().parseText(xml)
def versions = metadata.versioning.versions.version*.text();
if (versions.contains(version)) {
throw new RuntimeException("${version} has already been released!")
}
}
}
publish.mustRunAfter checkVersion
class FileOutput extends DefaultTask {
@OutputFile
File output
}
class WithV2FileOutput extends DefaultTask {
@OutputFile
File v1Output
@OutputFile
File v2Output
}
abstract class EnigmaTask extends JavaExec {
@Input
abstract Property<File> getJar()
@Input
abstract Property<File> getMappings()
EnigmaTask() {
classpath = project.configurations.enigmaRuntime
mainClass.set("cuchaz.enigma.gui.Main")
}
@TaskAction
void exec() {
args "-jar"
args jar.get().absolutePath
args "-mappings"
args mappings.get().absolutePath
args "-profile"
args "enigma_profile.json"
jvmArgs "-Xmx2048m"
super.exec()
}
}