> Does this error mean that there were too many classes/libs that it had
> to search through or something else?
This rather looks like an incompatibility of your asm library:
> java.lang.NoSuchMethodError:
> org.objectweb.asm.ClassReader.accept(Lorg/objectweb/asm/
> ClassVisitor;I)V
This means that AnnotatedClassScanner is looking for a method on
ClassReader that doesn't exist.
You should check if you have a duplicate asm.jar on your classpath.
Regards,
Martin