Fix asm version again

This commit is contained in:
ceze88 2024-01-13 18:25:45 +01:00
parent 2f1f814d43
commit d4de86f6a5

View File

@ -94,9 +94,8 @@
<include>me.lucko:jar-relocator</include> <include>me.lucko:jar-relocator</include>
<include>com.github.GeorgeV220:LibraryLoader</include> <include>com.github.GeorgeV220:LibraryLoader</include>
<include>com.github.consulo:objectweb-asm</include> <include>org.ow2.asm:asm</include>
<include>com.github.consulo.objectweb-asm:asm</include> <include>org.ow2.asm:asm-commons</include>
<include>com.github.consulo.objectweb-asm:asm-commons</include>
</includes> </includes>
</artifactSet> </artifactSet>
@ -254,9 +253,16 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.consulo</groupId> <groupId>org.ow2.asm</groupId>
<artifactId>objectweb-asm</artifactId> <artifactId>asm</artifactId>
<version>ASM_6_2</version> <version>9.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.2</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>