The current implementation for version 1.4.10 is creating a jar file which is missing some classes. After looking in the pom.xml file, it is using the maven-shade-plugin to create an uber-jar which embeds the org.objectweb.asm classes in the namespace net.bytebuddy.jar.asm. An external package depending on byte-buddy will then fail to compile if it does import net.bytebuddy.jar.asm
(In reply to Fabio Rossi from comment #0) > [...] > An external package depending on byte-buddy will then fail to compile if it > does > > import net.bytebuddy.jar.asm Not shading is by design. Such depending package should be adjusted to import ASM directly.