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 2022/01/22 22:30:42 UTC

[maven-surefire] branch sync-logs updated (34f5ffb -> 596faa6)

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

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


 discard 34f5ffb  [SUREFIRE-1926] Console logs should be synchronized
     add 7018851  [jenkins] MVN 3.2 for branches, 3.2+3.6 for master [jenkins] Using 'errorStatus' instead of checking the status of 'currentBuild.result'
     add 54ff195  Bump animal-sniffer-maven-plugin from 1.17 to 1.20
     add 345994d  Revert "Bump animal-sniffer-maven-plugin from 1.17 to 1.20"
     add 76c6233  [SUREFIRE-1955] Switch project to Java 8
     add 460d2a0  [SUREFIRE-1974] Upgrade plexus-java to Version 1.1.0
     add d309853  Bump maven-shade-plugin from 3.2.3 to 3.2.4
     add 2a97a4c  GitHub Shared Action v2
     add 4458e0c  Not exclude failsafe-reports from failure uploads
     add 5252f16  Deploy artifacts only for master branch
     add 09c547c  Bump junit-toolbox from 1.11 to 2.4
     add e969bef  enforce-java [1.8, 1.9) not needed
     add c0c6eb4  Bump powermockVersion from 2.0.5 to 2.0.9
     add 33a93ca  [SUREFIRE-1869] Replace deprecated File.toURL() by File.toURI().toURL()
     add 71fdc14  Bump jsr305 from 2.0.3 to 3.0.2
     add 08e6357  Too long path for test on Windows
     add c76b794  Bump doxiaSitetoolsVersion from 1.9.2 to 1.11.1
     add c1a190c  Bump maven-docck-plugin from 1.0 to 1.1
     add 989a6c3  Bump assertj-core from 3.9.1 to 3.22.0
     add 17f0631  Use the latest release version of failsafe in ITs
     add 48551a6  Bump maven-invoker-plugin from 3.2.0 to 3.2.2
     add 909637c  [SUREFIRE-1967] Fix parallel test ordering to prevent high resource consumption
     add f8066dc  [SUREFIRE-1972] Use current version of surefire-shared-utils
     add 4b549e4  [github] max-parallel: 4, timeout-minutes: 7 hours
     add c48f2b2  removed maven-shade-plugin in maven-surefire-common
     add cf11553  [SUREFIRE-1980] Upgrade Apache commons-lang3 to Version 3.12.0
     add a682178  [SUREFIRE-1937] Upgrade Apache commons-io to Version 2.11.0
     add f535a32  [SUREFIRE-1938] Upgrade Apache commons-compress to Version 1.21
     add 2da8f9b  [SUREFIRE-1981] Upgrade Apache maven-shared-utils to Version 3.3.4
     add 747c757  [SUREFIRE-1982] Fix failures (java.nio.ChartBuffer) when compiled on Java 9+ and run on Java 8
     add 97afea1  [SUREFIRE-1935] Use JUnit Platform 1.8 API to start Launcher via LauncherSession
     add aeb6a32  [SUREFIRE-1975] JDK18 - The Security Manager is deprecated and will be removed in a future release
     add b57bbb3  Update maven-verify.yml
     add 95b9396  added integration test Surefire34SecurityManagerIT#shouldFailOnJDK()
     add 596faa6  [SUREFIRE-1926] Console logs should be synchronized

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (34f5ffb)
            \
             N -- N -- N   refs/heads/sync-logs (596faa6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/maven-verify.yml                 |  17 ++-
 Jenkinsfile                                        |  53 ++++----
 README.md                                          |  10 +-
 maven-failsafe-plugin/pom.xml                      |   9 +-
 maven-surefire-common/pom.xml                      |  20 +--
 .../plugin/surefire/AbstractSurefireMojo.java      |   5 +-
 .../booterclient/DefaultForkConfiguration.java     |  52 ++++---
 .../output/ThreadedStreamConsumer.java             |   3 +-
 .../surefire/report/StatelessXmlReporter.java      |  71 +++++-----
 .../plugin/surefire/AbstractSurefireMojoTest.java  |  14 +-
 .../booterclient/ForkConfigurationTest.java        |  12 +-
 .../extensions/ConsoleOutputReporterTest.java      |  41 +++---
 .../surefire/extensions/StatelessReporterTest.java |  44 +++---
 .../StatelessTestsetInfoReporterTest.java          |  10 +-
 maven-surefire-plugin/pom.xml                      |   2 +-
 .../src/site/apt/developing.apt.vm                 |   7 +-
 .../src/site/apt/examples/junit.apt.vm             |   3 +
 pom.xml                                            | 149 ++++++---------------
 surefire-api/pom.xml                               |   2 +-
 .../surefire/api/stream/AbstractStreamDecoder.java |  10 +-
 .../maven/surefire/api/util/ReflectionUtils.java   |  12 ++
 .../surefire/api/util/internal/ObjectUtils.java    |  11 ++
 .../java/org/apache/maven/JUnit4SuiteTest.java     |   4 +-
 .../api/stream/AbstractStreamDecoderTest.java      |  39 +++---
 .../surefire/api/util/ReflectionUtilsTest.java     |  29 ++++
 .../api/util/internal/ObjectUtilsTest.java         |  22 ++-
 surefire-booter/pom.xml                            |   3 +-
 .../apache/maven/surefire/booter/Classpath.java    |   2 +-
 .../maven/surefire/booter/ProviderFactory.java     |   3 +-
 .../apache/maven/surefire/booter/SystemUtils.java  |  50 +------
 .../maven/surefire/booter/ClasspathTest.java       |  23 ++--
 .../surefire/booter/IsolatedClassLoaderTest.java   |   2 +-
 .../surefire/booter/NewClassLoaderRunner.java      |  18 +--
 .../maven/surefire/booter/SystemUtilsTest.java     |  12 --
 surefire-extensions-api/pom.xml                    |   2 +-
 surefire-its/pom.xml                               |   7 +-
 .../its/jiras/Surefire1367AssumptionLogsIT.java    |   2 +-
 ...urefire1914XmlReportingParameterizedTestIT.java |   2 +-
 ...ire1967CheckTestNgMethodParallelOrderingIT.java |  83 ++++++++++++
 .../its/jiras/Surefire34SecurityManagerIT.java     |  27 ++++
 .../pom.xml                                        |  17 ++-
 .../test/java/testng/parallelOrdering/Base.java    |  58 ++++++++
 .../java/testng/parallelOrdering/TestClass1.java   |   3 +
 .../java/testng/parallelOrdering/TestClass2.java   |   3 +
 .../java/testng/parallelOrdering/TestClass3.java   |   3 +
 .../java/testng/parallelOrdering/TestClass4.java   |   3 +
 .../surefire-946-self-destruct-plugin/pom.xml      |   2 +-
 .../resources/test-helper-dump-pid-plugin/pom.xml  |   2 +-
 surefire-its/src/test/resources/toolchains.xml     |   2 +-
 surefire-providers/common-java5/pom.xml            |   2 +-
 surefire-providers/surefire-junit-platform/pom.xml |  29 ----
 .../junitplatform/JUnitPlatformProvider.java       |  64 +++++++--
 .../maven/surefire/junitplatform/LazyLauncher.java |  26 +++-
 .../maven/surefire/junit/JUnit3Provider.java       |  26 ++--
 .../maven/surefire/junit/JUnitTestSetTest.java     |  58 ++++++++
 .../maven/surefire/testng/TestNGExecutor.java      |  42 +++++-
 surefire-report-parser/pom.xml                     |   2 +-
 surefire-shared-utils/pom.xml                      |  36 ++++-
 58 files changed, 759 insertions(+), 506 deletions(-)
 copy surefire-its/src/test/java/org/apache/maven/surefire/its/CheckTestNgJdk14IT.java => surefire-api/src/test/java/org/apache/maven/surefire/api/util/internal/ObjectUtilsTest.java (64%)
 create mode 100644 surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1967CheckTestNgMethodParallelOrderingIT.java
 copy surefire-its/src/test/resources/{junit47-concurrency => surefire-1967-testng-method-parallel-ordering}/pom.xml (84%)
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/Base.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass1.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass2.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass3.java
 create mode 100644 surefire-its/src/test/resources/surefire-1967-testng-method-parallel-ordering/src/test/java/testng/parallelOrdering/TestClass4.java