Exclude junit5 dependencies to keep test runner in Eclipse using JUnit 4
Change-Id: I82c261956a9f58d243561dcf80816a2df2a65bf9
diff --git a/full/Changes b/full/Changes
index e2a39a1..17cb089 100644
--- a/full/Changes
+++ b/full/Changes
@@ -22,7 +22,8 @@
2023-02-20
- Deprecate API token (JWT) web-service
- Fixed Slf4J binding
-
+2023-02-28
+Exclude junit5 dependencies to keep test runner in Eclipse using JUnit 4
# version 0.69.1
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 -->