What Are The Shallow Dependencies of spring-webmvc?
I am trying to figure out the first level dependencies of spring-webmvc. This is for an environment where I have to manually put in place the dependencies.
http://mvnrepository.com/artifact/org.springframework/spring-webmvc/3.0.5.RELEASE shows a list of 42 dependencies in the "This artifact depends on ..."
When I use the Maven POM in my laptop, I see 7 (all 3.0.5):
- spring-asm
- spring-beans
- spring-context
- spring-context-support
- spring-core
- spring-expression
- spring-web
Those 42 dependencies are deep dependencies and I think I can count on the 7. The 7 are already to go in the environment so I should just have to go with adding spring-webmv开发者_如何学JAVAc 3.0.5, right?
Thanks!
You can use the SpringSource Enterprise Bundle Repository to check individual module direct dependencies.
精彩评论