Skip to content

Commit 3e0d731

Browse files
committed
update buildscript
1 parent b28285d commit 3e0d731

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//version: 1656003793falsepattern72
1+
//version: 1656003793falsepattern75
22
/*
33
DO NOT CHANGE THIS FILE!
44
@@ -322,13 +322,20 @@ repositories {
322322
name = "sponge2"
323323
url = "https://mvn.falsepattern.com/sponge"
324324
}
325+
maven {
326+
name = "jitpack"
327+
url = "https://mvn.falsepattern.com/jitpack/"
328+
}
325329
}
326330
}
327331

328-
def unimixinsVersion = "0.1.14"
332+
def unimixinsVersion = "0.1.15"
329333

330334
dependencies {
331335
if(usesMixins.toBoolean()) {
336+
annotationProcessor("org.ow2.asm:asm-debug-all:5.0.3")
337+
annotationProcessor("com.google.guava:guava:24.1.1-jre")
338+
annotationProcessor("com.google.code.gson:gson:2.8.6")
332339
annotationProcessor("com.github.LegacyModdingMC.UniMixins:unimixins-all-1.7.10:$unimixinsVersion:dev")
333340
implementation("com.github.LegacyModdingMC.UniMixins:unimixins-all-1.7.10:$unimixinsVersion:dev")
334341
runtimeOnly('org.jetbrains:intellij-fernflower:1.2.1.16')
@@ -1027,6 +1034,10 @@ configure(deobfParams) {
10271034
description = 'Rename all obfuscated parameter names inherited from Minecraft classes'
10281035
}
10291036

1037+
tasks.withType(JavaCompile) {
1038+
options.encoding = 'UTF-8'
1039+
}
1040+
10301041
// Dependency Deobfuscation
10311042

10321043
def deobfMaven(mavenDep) {

0 commit comments

Comments
 (0)