Exclude junit5 dependencies to keep test runner in Eclipse using JUnit 4

Change-Id: I82c261956a9f58d243561dcf80816a2df2a65bf9
diff --git a/full/pom.xml b/full/pom.xml
index 2c557f4..3149614 100644
--- a/full/pom.xml
+++ b/full/pom.xml
@@ -227,12 +227,24 @@
 			<artifactId>jersey-test-framework-core</artifactId>
 			<version>${jersey.version}</version>
 			<scope>test</scope>
+			<exclusions>
+				<exclusion>
+					<groupId>org.junit.jupiter</groupId>
+  					<artifactId>junit-jupiter</artifactId>
+				</exclusion>
+			</exclusions>
 		</dependency>
 		<dependency>
 			<groupId>org.glassfish.jersey.test-framework.providers</groupId>
 			<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
 			<version>${jersey.version}</version>
 			<scope>test</scope>
+			<exclusions>
+				<exclusion>
+					<groupId>org.junit.jupiter</groupId>
+  					<artifactId>junit-jupiter</artifactId>
+				</exclusion>
+			</exclusions>
 		</dependency>
 
 		<!-- velocity -->