-
Type:
Task
-
Resolution: Fixed
-
Priority:
L3 - Default
-
Affects Version/s: None
-
Component/s: None
Acceptance Criteria (Required on creation):
The RPA bridge is built upon Spring Boot 2.4 which does not support Junit 4 tests out of the box anymore. A dependency has to be added to execute Junit 4 tests again.
Hints (optional):
We need to add something like
<!-- needed for JUnit4 execution -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>