Use Mercury 0.1.0-rc1 (#301)

dev/0.11
Jamie Mansfield 2020-11-15 16:03:16 +00:00 committed by GitHub
parent 9b8f1b7233
commit db623157aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,7 @@ dependencies {
implementation ('net.fabricmc:lorenz-tiny:2.0.0+build.2') {
transitive = false
}
implementation ('org.cadixdev:lorenz-io-proguard:0.5.3')
implementation ('org.cadixdev:lorenz-io-proguard:0.5.5')
// decompilers
implementation ('net.fabricmc:procyon-fabric-compilertools:0.5.35.13')
@ -61,7 +61,7 @@ dependencies {
implementation ('org.benf:cfr:0.150')
// source code remapping
implementation ('org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT')
implementation ('org.cadixdev:mercury:0.1.0-rc1')
// Kapt integration
compileOnly('org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72')

View File

@ -212,6 +212,7 @@ public class SourceRemapper {
public static Mercury createMercuryWithClassPath(Project project, boolean toNamed) {
Mercury m = new Mercury();
m.setGracefulClasspathChecks(true);
for (File file : project.getConfigurations().getByName(Constants.Configurations.MINECRAFT_DEPENDENCIES).getFiles()) {
m.getClassPath().add(file.toPath());