I am quite confused about how does maven handle the transitive dependencies and how does it write to the classpath.
Say if I have two paths for E (A,B,C,D,E are ejb):
1. A<---B<---E (E dependent(comile) on B which dependent on A)
2. A<---C<---D<---E (all the dependencies are compile dependencies)
Question is: How does E built, and which artifacts are in E's classpath(META-INF).
Thanks a lot!