Tests: Explicitly use newer junit runner for maven integ tests

The older runner (junit 4.0?) hides exceptions in static initialization
(and runs the tests anyways!). With this change, the actual cause
of the recent windows integ test failures with security manager
are shown.
This commit is contained in:
Ryan Ernst 2015-07-13 15:33:02 -07:00
parent 686413771c
commit adfd55bf89
1 changed files with 7 additions and 0 deletions

View File

@ -719,6 +719,13 @@
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>2.18.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>