diff options
Diffstat (limited to 'vid-app-common/pom.xml')
-rwxr-xr-x | vid-app-common/pom.xml | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index 38b06f1f8..0cc2195e9 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -26,7 +26,7 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <epsdk.version>2.4.0</epsdk.version> - <springframework.version>4.2.9.RELEASE</springframework.version> + <springframework.version>4.3.22.RELEASE</springframework.version> <hibernate.version>4.3.11.Final</hibernate.version> <jackson.version>2.9.8</jackson.version> <jersey.version>2.27</jersey.version> @@ -472,6 +472,12 @@ <version>0.9.3</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.jeasy</groupId> + <artifactId>easy-random-core</artifactId> + <version>4.0.0.RC1</version> + <scope>test</scope> + </dependency> <!-- Helpers --> <dependency> @@ -622,11 +628,8 @@ <artifactId>jcl-over-slf4j</artifactId> <version>1.7.12</version> </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-context-support</artifactId> - <version>${springframework.version}</version> - </dependency> + + <!-- springframework to override epsdk-app-common's and epsdk-core's versions --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> @@ -659,6 +662,22 @@ <version>${springframework.version}</version> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context-support</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-orm</artifactId> + <version>${springframework.version}</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-aop</artifactId> + <version>${springframework.version}</version> + </dependency> + + <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> <version>${jersey.version}</version> @@ -799,5 +818,10 @@ <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> + <dependency> + <groupId>io.springfox</groupId> + <artifactId>springfox-swagger2</artifactId> + <version>2.9.2</version> + </dependency> </dependencies> </project> |