diff options
Diffstat (limited to 'asdctool/pom.xml')
-rw-r--r-- | asdctool/pom.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/asdctool/pom.xml b/asdctool/pom.xml index 0166c88c2f..20a6919468 100644 --- a/asdctool/pom.xml +++ b/asdctool/pom.xml @@ -13,6 +13,56 @@ <dependencies> + + <!--<dependency>--> + <!--<groupId>org.springframework</groupId>--> + <!--<artifactId>spring-beans</artifactId>--> + <!--<version>${spring.version}</version>--> + <!--<scope>provided</scope>--> + <!--</dependency>--> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context-support</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-messaging</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-web</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-webmvc</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-aspects</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-test</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> + <!-- ASDC dependencies --> <dependency> <groupId>org.openecomp.sdc.be</groupId> @@ -240,17 +290,20 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> + <version>${spring.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> + <version>${spring.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> + <version>${spring.version}</version> <scope>compile</scope> </dependency> <dependency> @@ -262,6 +315,7 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> + <version>${spring.version}</version> <scope>compile</scope> </dependency> <!-- Spring 4 dependencies end --> |