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 2021/01/23 03:51:35 UTC

[maven-surefire] branch master updated (0173a5f -> 8316b87)

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 0173a5f  [SUREFIRE-1856] Updated documentation for the TestNG Provider - may not disable JUnit in suiteXmlFiles
     new b85c145  [SUREFIRE-1785] Upgrade Maven Artifact Transfer to Version 0.13.1
     new 8316b87  removed debugSink.flush() when debugging command/event stream

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:
 .../java/org/apache/maven/surefire/stream/EventDecoder.java   |  1 -
 pom.xml                                                       |  8 +-------
 .../apache/maven/surefire/booter/stream/CommandDecoder.java   |  1 -
 surefire-shared-utils/pom.xml                                 | 11 +----------
 4 files changed, 2 insertions(+), 19 deletions(-)


[maven-surefire] 02/02: removed debugSink.flush() when debugging command/event stream

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 8316b87b011a6c834ecf0d796b32525cf26f9470
Author: tibordigana <ti...@gmail.com>
AuthorDate: Sat Jan 23 04:05:23 2021 +0100

    removed debugSink.flush() when debugging command/event stream
---
 .../src/main/java/org/apache/maven/surefire/stream/EventDecoder.java     | 1 -
 .../java/org/apache/maven/surefire/booter/stream/CommandDecoder.java     | 1 -
 2 files changed, 2 deletions(-)

diff --git a/maven-surefire-common/src/main/java/org/apache/maven/surefire/stream/EventDecoder.java b/maven-surefire-common/src/main/java/org/apache/maven/surefire/stream/EventDecoder.java
index 8170bac..02d8b7b 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/surefire/stream/EventDecoder.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/surefire/stream/EventDecoder.java
@@ -419,7 +419,6 @@ public class EventDecoder extends AbstractStreamDecoder<Event, ForkedProcessEven
         try
         {
             debugSink.write( array, position, remaining );
-            debugSink.flush();
         }
         catch ( IOException e )
         {
diff --git a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/stream/CommandDecoder.java b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/stream/CommandDecoder.java
index e161be7..be74568 100644
--- a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/stream/CommandDecoder.java
+++ b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/stream/CommandDecoder.java
@@ -228,7 +228,6 @@ public class CommandDecoder extends AbstractStreamDecoder<Command, MasterProcess
         try
         {
             debugSink.write( array, position, remaining );
-            debugSink.flush();
         }
         catch ( IOException e )
         {


[maven-surefire] 01/02: [SUREFIRE-1785] Upgrade Maven Artifact Transfer to Version 0.13.1

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 b85c145d9a95a8a9a0bd81a0fd1de71ac7c22939
Author: tibordigana <ti...@gmail.com>
AuthorDate: Sat Jan 23 04:04:01 2021 +0100

    [SUREFIRE-1785] Upgrade Maven Artifact Transfer to Version 0.13.1
---
 pom.xml                       |  8 +-------
 surefire-shared-utils/pom.xml | 11 +----------
 2 files changed, 2 insertions(+), 17 deletions(-)

diff --git a/pom.xml b/pom.xml
index 339e645..2e8755b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -219,15 +219,9 @@
         </exclusions>
       </dependency>
       <dependency>
-        <!-- version 1.11 used in maven-artifact-transfer:0.11.0 -->
-        <groupId>commons-codec</groupId>
-        <artifactId>commons-codec</artifactId>
-        <version>1.11</version>
-      </dependency>
-      <dependency>
         <groupId>org.apache.maven.shared</groupId>
         <artifactId>maven-artifact-transfer</artifactId>
-        <version>0.11.0</version>
+        <version>0.13.1</version>
         <exclusions>
           <exclusion>
             <groupId>org.apache.maven</groupId>
diff --git a/surefire-shared-utils/pom.xml b/surefire-shared-utils/pom.xml
index a6c67d4..c845f5c 100644
--- a/surefire-shared-utils/pom.xml
+++ b/surefire-shared-utils/pom.xml
@@ -56,10 +56,6 @@
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-compress</artifactId>
         </dependency>
-        <dependency>
-            <groupId>commons-codec</groupId>
-            <artifactId>commons-codec</artifactId>
-        </dependency>
     </dependencies>
 
     <build>
@@ -78,7 +74,6 @@
                                     <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>
@@ -98,10 +93,6 @@
                                     <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>
@@ -110,4 +101,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>