You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/11/10 03:22:26 UTC

[maven-surefire] branch master updated (7e11fe3 -> 43cb7ce)

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

tibordigana pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.


    from 7e11fe3  [SUREFIRE-1714] Created module "surefire-shared-utils" as a required dependency in "surefire-extensions-api" and "maven-surefire-common"
     new 9d23be0  [SUREFIRE-1714] Created module "surefire-shared-utils" as a required dependency in "surefire-extensions-api" and "maven-surefire-common"
     new 43cb7ce  dependency versions should be in parent POM

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 maven-surefire-common/pom.xml                      |  1 -
 pom.xml                                            |  5 +++
 surefire-providers/surefire-junit-platform/pom.xml |  1 -
 surefire-shared-utils/pom.xml                      | 36 ++++++++++++++++++++++
 4 files changed, 41 insertions(+), 2 deletions(-)


[maven-surefire] 01/02: [SUREFIRE-1714] Created module "surefire-shared-utils" as a required dependency in "surefire-extensions-api" and "maven-surefire-common"

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 9d23be06224c39a8e6c723d628745c4d15c661eb
Author: tibordigana <ti...@apache.org>
AuthorDate: Sun Nov 10 04:19:07 2019 +0100

    [SUREFIRE-1714] Created module "surefire-shared-utils" as a required dependency in "surefire-extensions-api" and "maven-surefire-common"
---
 surefire-shared-utils/pom.xml | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/surefire-shared-utils/pom.xml b/surefire-shared-utils/pom.xml
index 4559734..3ae7b98 100644
--- a/surefire-shared-utils/pom.xml
+++ b/surefire-shared-utils/pom.xml
@@ -46,6 +46,22 @@
             <groupId>org.apache.maven.shared</groupId>
             <artifactId>maven-shared-utils</artifactId>
         </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-lang3</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-compress</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
@@ -61,6 +77,10 @@
                             <artifactSet>
                                 <includes>
                                     <include>org.apache.maven.shared:maven-shared-utils</include>
+                                    <incclude>commons-io:commons-io</incclude>
+                                    <include>org.apache.commons:commons-lang3</include>
+                                    <include>org.apache.commons:commons-compress</include>
+                                    <include>commons-codec:commons-codec</include>
                                 </includes>
                             </artifactSet>
                             <relocations>
@@ -68,6 +88,22 @@
                                     <pattern>org.apache.maven.shared.utils</pattern>
                                     <shadedPattern>org.apache.maven.surefire.shared.utils</shadedPattern>
                                 </relocation>
+                                <relocation>
+                                    <pattern>org.apache.commons.io</pattern>
+                                    <shadedPattern>org.apache.maven.surefire.shared.io</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.apache.commons.lang3</pattern>
+                                    <shadedPattern>org.apache.maven.surefire.shared.lang3</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.apache.commons.compress</pattern>
+                                    <shadedPattern>org.apache.maven.surefire.shared.compress</shadedPattern>
+                                </relocation>
+                                <relocation>
+                                    <pattern>org.apache.commons.codec</pattern>
+                                    <shadedPattern>org.apache.maven.surefire.shared.codec</shadedPattern>
+                                </relocation>
                             </relocations>
                         </configuration>
                     </execution>


[maven-surefire] 02/02: dependency versions should be in parent POM

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 43cb7ce60ab475e4ff0fb6f5e9276a25d9a9ff9f
Author: tibordigana <ti...@apache.org>
AuthorDate: Sun Nov 10 04:22:05 2019 +0100

    dependency versions should be in parent POM
---
 maven-surefire-common/pom.xml                      | 1 -
 pom.xml                                            | 5 +++++
 surefire-providers/surefire-junit-platform/pom.xml | 1 -
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/maven-surefire-common/pom.xml b/maven-surefire-common/pom.xml
index ca690d4..f644023 100644
--- a/maven-surefire-common/pom.xml
+++ b/maven-surefire-common/pom.xml
@@ -94,7 +94,6 @@
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-compress</artifactId>
-            <version>1.19</version>
         </dependency>
         <dependency>
             <groupId>com.google.code.findbugs</groupId>
diff --git a/pom.xml b/pom.xml
index 2a0f35b..1d6e58a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -341,6 +341,11 @@
         <version>5.3.2</version>
       </dependency>
       <dependency>
+        <groupId>org.junit.jupiter</groupId>
+        <artifactId>junit-jupiter-params</artifactId>
+        <version>5.3.2</version>
+      </dependency>
+      <dependency>
         <groupId>org.mockito</groupId>
         <artifactId>mockito-core</artifactId>
         <version>2.27.0</version>
diff --git a/surefire-providers/surefire-junit-platform/pom.xml b/surefire-providers/surefire-junit-platform/pom.xml
index e073232..2ccb05a 100644
--- a/surefire-providers/surefire-junit-platform/pom.xml
+++ b/surefire-providers/surefire-junit-platform/pom.xml
@@ -98,7 +98,6 @@
         <dependency>
             <groupId>org.junit.jupiter</groupId>
             <artifactId>junit-jupiter-params</artifactId>
-            <version>5.3.2</version>
             <scope>test</scope>
         </dependency>
         <dependency>