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/19 21:26:32 UTC

[maven-surefire] branch inc-exc-files updated (1a3cf0e -> 768bb15)

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

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


 discard 1a3cf0e  throw new MojoFailureException( "Method filter prohibited in " + "includes|excludes parameter: " + pattern )
 discard be7a443  [SUREFIRE-1964] Support for method filtering on excludesFile and includesFile
     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 003e4ed  [SUREFIRE-1964] Support for method filtering on excludesFile and includesFile
     add ef89127  throw new MojoFailureException( "Method filter prohibited in " + "includes|excludes parameter: " + pattern )
     add e23e9e2  concatenated string in exception message
     add 768bb15  fixed ITs

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   (1a3cf0e)
            \
             N -- N -- N   refs/heads/inc-exc-files (768bb15)

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                 |  8 ++-
 maven-failsafe-plugin/pom.xml                      |  4 +-
 maven-surefire-common/pom.xml                      | 20 +-----
 .../plugin/surefire/AbstractSurefireMojo.java      |  3 +-
 .../booterclient/DefaultForkConfiguration.java     | 52 ++++++++------
 .../output/ThreadedStreamConsumer.java             |  3 +-
 .../surefire/report/StatelessXmlReporter.java      | 71 ++++++++----------
 .../booterclient/ForkConfigurationTest.java        | 12 ++--
 maven-surefire-plugin/pom.xml                      |  2 +-
 pom.xml                                            | 40 +++++++----
 surefire-api/pom.xml                               |  2 +-
 .../surefire/api/stream/AbstractStreamDecoder.java | 10 +--
 .../maven/surefire/api/util/ReflectionUtils.java   | 12 ++++
 .../api/stream/AbstractStreamDecoderTest.java      |  8 +--
 .../surefire/api/util/ReflectionUtilsTest.java     | 29 ++++++++
 surefire-booter/pom.xml                            |  3 +-
 .../apache/maven/surefire/booter/Classpath.java    |  2 +-
 .../maven/surefire/booter/ClasspathTest.java       | 23 +++---
 .../surefire/booter/IsolatedClassLoaderTest.java   |  2 +-
 .../surefire/booter/NewClassLoaderRunner.java      | 18 ++---
 surefire-extensions-api/pom.xml                    |  2 +-
 surefire-its/pom.xml                               |  6 +-
 .../its/AbstractTestMultipleMethodPatterns.java    |  3 +-
 .../its/jiras/Surefire1367AssumptionLogsIT.java    |  2 +-
 ...urefire1914XmlReportingParameterizedTestIT.java |  2 +-
 ...ire1967CheckTestNgMethodParallelOrderingIT.java | 83 ++++++++++++++++++++++
 .../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-providers/common-java5/pom.xml            |  2 +-
 .../maven/surefire/testng/TestNGExecutor.java      | 42 ++++++++++-
 surefire-report-parser/pom.xml                     |  2 +-
 surefire-shared-utils/pom.xml                      | 36 +++++++++-
 38 files changed, 424 insertions(+), 171 deletions(-)
 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