Registry / other / asm-all

asm-all

JSON →
library5.0.4javamavenunverified

ASM is a very small and fast Java bytecode manipulation framework for reading, writing, transforming, and analyzing Java bytecode.

<dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-all</artifactId> <version>5.0.4</version> </dependency>
INSTALL
IMPORT
SIG · ASM-ALL
A
asm-all
otherjavav5.0.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ClassReader
org.objectweb.asm.ClassReader

Reads and visits the bytecode of a class using ASM.

import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassVisitor; import org.objectweb.asm.Opcodes; public class Example { public static void main(String[] args) throws Exception { ClassReader reader = new ClassReader("java.lang.String"); reader.accept(new ClassVisitor(Opcodes.ASM5) {}, 0); } }
Debug
Known issues
breakingasm-all is deprecated; use asm (core) and asm-commons separately.
fix
Replace asm-all with asm and asm-commons artifacts.
affects: >=5.0.0
Upgrade
Version history
5.0.4latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
22 hits · last 30 days
node
18
Meta
2
Amazon
1
OpenAI (training)
1
Resources
asm-all — mvn dependency:get asm-all · libregistry