I have two Jars A and B where A depends on B.
Jar B has a single class:
@ApplicationScoped
public class MyMa
I was having this exact same problem and I was able to get it figured out but I use an ear to combine the jars.
Ear Layout
project.ear
|-- META-INF
| |-- MANIFEST.MF
| |-- application.xml*
|-- one.jar (bean archive)
| |-- META-INF
| | |-- beans.xml
| |--
|-- two.jar (ejb)
test-application
two.jar
one.jar
Doing that it made one.jar available to two.jar in the container.
-kurt