tedwon/hello-jboss-modules

Test same class in two modules

Opened this issue · 1 comments

there are a and b modules has a class c. d depends on a,b. d call c. then c is loaded from which module?

    <module name="org.jbugkorea.helloA"/>
    <module name="org.jbugkorea.helloB"/>

[Loaded org.jbugkorea.hello.Hello from jar:file:/Users/tedwon/rh/build/hello-jboss-modules/mods/org/jbugkorea/hello/main/helloA.jar!/]
Hello!

    <module name="org.jbugkorea.helloA"/>
    <module name="org.jbugkorea.helloB"/>

[Loaded org.jbugkorea.hello.Hello from jar:file:/Users/tedwon/rh/build/hello-jboss-modules/mods/org/jbugkorea/hello/main/helloB.jar!/]
Hello!