removing unused commented dependencies removing the spring related dependencies that were commented out.
Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/0eb8077d Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/0eb8077d Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/0eb8077d Branch: refs/heads/marvin_refactor Commit: 0eb8077dec037816608f01ea3e0bee2d69c02e53 Parents: 45af2ef Author: Prasanna Santhanam <[email protected]> Authored: Sun Mar 10 11:38:48 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Sun Mar 31 22:19:15 2013 +0530 ---------------------------------------------------------------------- pom.xml | 19 ++++++++++++------- 1 files changed, 12 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/0eb8077d/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9e9db69..ed24988 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,6 @@ <module>services</module> <module>test</module> <module>client</module> - <module>setup</module> </modules> <dependencyManagement> @@ -189,12 +188,12 @@ <artifactId>junit</artifactId> <version>${cs.junit.version}</version> <scope>test</scope> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-core</artifactId> - <version>${org.springframework.version}</version> - </dependency> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>${org.springframework.version}</version> + </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> @@ -217,6 +216,12 @@ <version>${org.springframework.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <version>${org.springframework.version}</version> + <scope>test</scope> + </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId>
