diff options
Diffstat (limited to 'catalog-fe')
-rw-r--r-- | catalog-fe/pom.xml | 73 |
1 files changed, 72 insertions, 1 deletions
diff --git a/catalog-fe/pom.xml b/catalog-fe/pom.xml index b12c32b020..3783207fb9 100644 --- a/catalog-fe/pom.xml +++ b/catalog-fe/pom.xml @@ -16,7 +16,77 @@ <dependencies> - + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>${spring.version}</version> + <scope>provided</scope> + </dependency> + + <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</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-aop</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-expression</artifactId> + <version>${spring.version}</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.functionaljava</groupId> <artifactId>functionaljava</artifactId> @@ -264,6 +334,7 @@ <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> + <version>${spring.version}</version> <scope>test</scope> </dependency> </dependencies> |