Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. lib
  2. META-INF
  3. projectA.jar
  4. ProjectB.war
  5.  
  6. In my case, I was using an MDB so it was needed to be declared as <**ejbModule**> instead of jarModule. I also had to declare my dependency as of type ejb to be picked up Jboss (6.4):
  7.  
  8. <dependency>
  9. <groupId>ab.cd</groupId>
  10. <artifactId>mdb-publisher</artifactId>
  11. <version>xxx-SNAPSHOT</version>
  12. <type>**ejb**</type>
  13. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement