You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2021/01/11 21:09:39 UTC

[myfaces-tobago] 07/11: chore: remove deprecated junit-platform-surefire-provider

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

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 2744a54fce9555d8c2c0b699cf1f213917152264
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Tue Dec 22 16:43:05 2020 +0100

    chore: remove deprecated junit-platform-surefire-provider
    
    * junit-platform-surefire-provider is deprecated and removed; use maven-surefire-plugin native support instead
    * update maven-surefire-plugin and maven-failsafe-plugin
---
 pom.xml                                    | 4 ++--
 tobago-example/tobago-example-demo/pom.xml | 7 -------
 2 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 79f749f..d2b6728 100644
--- a/pom.xml
+++ b/pom.xml
@@ -854,7 +854,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
-          <version>2.22.1</version>
+          <version>2.22.2</version>
           <configuration>
             <argLine>-Duser.language=en -Duser.region=US</argLine>
             <!--
@@ -870,7 +870,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-failsafe-plugin</artifactId>
-          <version>2.22.1</version>
+          <version>2.22.2</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
diff --git a/tobago-example/tobago-example-demo/pom.xml b/tobago-example/tobago-example-demo/pom.xml
index aaa95eb..39cd2d4 100644
--- a/tobago-example/tobago-example-demo/pom.xml
+++ b/tobago-example/tobago-example-demo/pom.xml
@@ -274,13 +274,6 @@
         <plugins>
           <plugin>
             <artifactId>maven-failsafe-plugin</artifactId>
-            <dependencies>
-              <dependency>
-                <groupId>org.junit.platform</groupId>
-                <artifactId>junit-platform-surefire-provider</artifactId>
-                <version>1.3.2</version>
-              </dependency>
-            </dependencies>
             <configuration>
               <includes>
                 <include>integration/*</include>