Why aren't these dependencies showing up in maven? -
mvn dependency:tree -x
shows:
... [info] +- org.springframework.ws:spring-ws:pom:2.1.4.release:compile [info] +- org.springframework.ws:spring-ws-core:jar:2.2.1.release:compile ...
...and yet when @ pom spring-ws
see has dependencies aren't shown here. what's that?? how can force maven show dependencies?
first of should figure out dependency party of dependency tree using below command or refer link provided
mvn dependency:tree -dincludes=name_of_dependency:name_of_dependecy
https://maven.apache.org/plugins/maven-dependency-plugin/examples/filtering-the-dependency-tree.html
if not might have been excluded.
Comments
Post a Comment