Skip to content

Commit

Permalink
Fix org.spongepowered.asm.bridge files
Browse files Browse the repository at this point in the history
  • Loading branch information
tox1cozZ committed Aug 15, 2022
1 parent 4c3ed1b commit 30de05f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ apply plugin: 'forge'
apply plugin: 'maven-publish'
apply plugin: 'com.github.johnrengelman.shadow'

version = '1.1.1'
version = '1.1.2'
group = 'io.github.tox1cozz.mixinbooterlegacy'

sourceCompatibility = targetCompatibility = '1.8'
Expand Down
4 changes: 2 additions & 2 deletions gradle/configurations/v1.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ repositories {
}

dependencies {
implementation 'com.github.tox1cozZ:mixin-booter-legacy:1.1.1'
annotationProcessor 'com.github.tox1cozZ:mixin-booter-legacy:1.1.1:processor'
implementation 'com.github.tox1cozZ:mixin-booter-legacy:1.1.2'
annotationProcessor 'com.github.tox1cozZ:mixin-booter-legacy:1.1.2:processor'
}

tasks.register('mixin', MixinTask)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public Container() {
ModMetadata meta = getMetadata();
meta.modId = "mixinbooterlegacy";
meta.name = "MixinBooterLegacy";
meta.version = "1.1.1";
meta.version = "1.1.2";
meta.description = "A Mixin library and loader.";
meta.logoFile = "/icon.png";
meta.authorList.addAll(Lists.newArrayList("Rongmario", "tox1cozZ"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.spongepowered.libraries.org.objectweb.asm.commons.Remapper;
import org.objectweb.asm.commons.Remapper;
import org.spongepowered.asm.mixin.extensibility.IRemapper;
import org.spongepowered.asm.util.ObfuscationUtil;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.lang.reflect.Field;
import java.lang.reflect.Method;

import org.spongepowered.libraries.org.objectweb.asm.commons.Remapper;
import org.objectweb.asm.commons.Remapper;
import org.spongepowered.asm.mixin.extensibility.IRemapper;

public final class RemapperAdapterFML extends RemapperAdapter {
Expand Down

0 comments on commit 30de05f

Please sign in to comment.