What dependencies does the MAVEN build spring project require?
<!--Spring Dependent - <!--1.Spring Core Dependencies - <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-core</Artifactid> <version>4.3.7.RELEASE</version> </Dependency> <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-beans</Artifactid> <version>4.3.7.RELEASE</version> </Dependency> <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-context</Artifactid> <version>4.3.7.RELEASE</version> </Dependency><!--2.Spring DAO Dependency -<!--SPRING-JDBC includes a number of tools such as JdbcTemplate - <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-jdbc</Artifactid> <version>4.3.7.RELEASE</version> </Dependency> <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-tx</Artifactid> <version>4.3.7.RELEASE</version> </Dependency> <!--3.Spring Web Dependency - <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-web</Artifactid> <version>4.3.7.RELEASE</version> </Dependency> <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-webmvc</Artifactid> <version>4.3.7.RELEASE</version> </Dependency> <!--4.Spring Test Dependency: Facilitates unit testing and integration testing - <Dependency> <groupId>Org.springframework</groupId> <Artifactid>Spring-test</Artifactid> <version>4.3.7.RELEASE</version> </Dependency>
Altogether four aspects:
1) Spring Core dependency
Spring-core, Spring-beans, Spring-context
2) Spring DAO Dependency (provides JdbcTemplate)
SPRING-JDBC, Spring-tx
3) Spring Web dependency
Spring-web, SPRING-WEBMVC
4) Spring Test dependent
Spring-test
What dependencies does the MAVEN build spring project require?