I am programming a plugin in Java for Spigot. After I added a new dependency (bStats) to Maven, it gave me the "Unsupported class file major version 61" error when I tried to build it. I think it's because I'm using Java 17 because when I changed the version to 11, it worked. Does anyone know how I could make this work with Java 17?
Asked
Active
Viewed 31 times
0
-
1Upgrade the Maven Shade plugin to the 3.3.0 version and if it doesn't work, try upgrading the ASM dependency of the plugin. It uses ASM 9.2 and the latest is 9.3 – Thiago Henrique Hupner Apr 29 '22 at 11:47