Update test libraries and fix scope

JUnit 4.12
Mockito 1.10.19
Fixed scope of Spring-test dependency
This commit is contained in:
Marten Deinum
2015-01-19 20:11:09 +01:00
committed by Michael Minella
parent 60635e4511
commit 1b2e749bcd

View File

@@ -65,19 +65,20 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.0.5.RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>