I've got a simple standalone application that uses weld-se, but I fail to get beans detected from all bean archives on my classpath
Basically, I have a bunch of jar files in the directory where I run:
java -classpath * a.b.c.Generator
Two of these jar files are bean archives, and the beans contained in the jar where the weld.initialize() happens are nicely discovered.
However, those from other jar files are completely ignored. This seems strange to me, though I am not wondering if this actually how it was intended. And if so, what would be a different solution?