Skip to content

Commit

Permalink
Move to Junit 4.11 and hamcrest-lib 1.3 so we can do better tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nealeu committed Jan 14, 2013
1 parent 0162111 commit ee442df
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,14 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>
</dependencies>
<build>
<resources>
Expand Down Expand Up @@ -514,4 +522,20 @@
</testResource>
</testResources>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit ee442df

Please sign in to comment.