Advertisement
Guest User

Untitled

a guest
Aug 20th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. - app.ear
  2. /lib
  3. x-lib.jar
  4. commons-io.jar
  5. /app.war
  6. /WEB-INF
  7. /lib
  8. y-lib.jar
  9. commons-io.jar
  10.  
  11. <dependency>
  12. <groupId>my.group</groupId>
  13. <artifactId>app</artifactId>
  14. <type>ejb</artifact>
  15. <scope>provided</scope>
  16. <version>${project.version}</version>
  17. </dependency>
  18.  
  19. <dependency>
  20. <groupId>some.other.group</groupId>
  21. <artifactId>y-lib</artifactId> <!-- This loads commons-io as compile dependency -->
  22. <version>1.2.3</version>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>some.other.group</groupId>
  27. <artifactId>y-lib</artifactId>
  28. <version>1.2.3</version>
  29. <exclusions>
  30. <exclusions>
  31. <groupId>commons-io</groupId>
  32. <artifactId>commons-io</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36.  
  37. <dependency>
  38. <groupId>ejbModuleGroupId</groupId>
  39. <artifactId>ejbModuleArtifactId</artifactId>
  40. <scope>provided</scope>
  41. <type>ejb</type>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>*</groupId>
  45. <artifactId>*</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement