You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2020/10/21 23:44:04 UTC

[cxf] branch master updated: Fix the Spring Boot systests, they are not run since Spring Boot 2.3.x upgrade because of switch to JUnit 5 as default

This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 48cbbe7  Fix the Spring Boot systests, they are not run since Spring Boot 2.3.x upgrade because of switch to JUnit 5 as default
48cbbe7 is described below

commit 48cbbe7adb802bec2caff2bb2e31c72d1d127a7a
Author: reta <dr...@gmail.com>
AuthorDate: Wed Oct 21 19:43:38 2020 -0400

    Fix the Spring Boot systests, they are not run since Spring Boot 2.3.x upgrade because of switch to JUnit 5 as default
---
 systests/spring-boot/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/systests/spring-boot/pom.xml b/systests/spring-boot/pom.xml
index a1804bf..beb4098 100644
--- a/systests/spring-boot/pom.xml
+++ b/systests/spring-boot/pom.xml
@@ -139,6 +139,14 @@
                     <groupId>org.xmlunit</groupId>
                     <artifactId>xmlunit-core</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.junit.jupiter</groupId>
+                    <artifactId>junit-jupiter</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.junit.vintage</groupId>
+                    <artifactId>junit-vintage-engine</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>