jetty-9: reverted JUnit to 4.8.1; trying to upgrade it breaks the whole build.

This commit is contained in:
Simone Bordet 2012-09-20 19:09:33 +02:00
parent ebdab22a63
commit be865fa191
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public class ResourceHandlerTest
private static ResourceHandler _resourceHandler;
@BeforeClass
public void setUp() throws Exception
public static void setUp() throws Exception
{
_server = new Server();
_connector = new ServerConnector(_server);
@ -58,7 +58,7 @@ public class ResourceHandlerTest
}
@AfterClass
public void tearDown() throws Exception
public static void tearDown() throws Exception
{
_server.stop();
}

View File

@ -509,7 +509,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<version>4.8.1</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>