This is an automated email from the ASF dual-hosted git repository. tibordigana pushed a change to branch SUREFIRE-1788 in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.
discard ab1b325 other ITs should not be so sensitive to TestNG and Mockito Reflection [ERROR]s omit c60df38 [SUREFIRE-1788] Unhandled native logs in SurefireForkChannel omit 9e436fd [SUREFIRE-1788] Unhandled native logs in SurefireForkChannel add 754e4ab [SUREFIRE-1791] Documentation and the integration test for Spock/Groovy with JUnit5 add f7c1d0d Verifier 1.7.2 add 882ae2c [jenkinsfile] workspace cleanup before/after run add d5bbb3f [SUREFIRE-1787] Support multiple runners (JUnit4, TestNG, other) and their API in JUnit5 Provider add d342819 [.asf.yaml] enabled all merge policies in enabled_merge_buttons new c738826 [SUREFIRE-1788] Unhandled native logs in SurefireForkChannel new 75cd6d4 other ITs should not be so sensitive to TestNG and Mockito Reflection [ERROR]s 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 (ab1b325) \ N -- N -- N refs/heads/SUREFIRE-1788 (75cd6d4) 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. 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: .asf.yaml | 8 + Jenkinsfile | 52 +- .../plugin/surefire/AbstractSurefireMojo.java | 140 ++--- .../surefire/SurefireDependencyResolver.java | 26 +- .../plugin/surefire/AbstractSurefireMojoTest.java | 629 ++++++++++++--------- .../surefire/SurefireDependencyResolverTest.java | 9 +- .../src/site/apt/examples/junit-platform.apt.vm | 241 +++++++- .../src/site/apt/examples/spock.apt.vm | 174 ++++++ maven-surefire-plugin/src/site/site.xml | 1 + pom.xml | 4 +- .../surefire/its/fixture/HelperAssertions.java | 17 +- ...rectConcurrentTestCountIT.java => SpockIT.java} | 19 +- .../surefire/its/jiras/Surefire1787JUnit5IT.java | 122 ++++ surefire-its/src/test/resources/junit-4-5/pom.xml | 166 ++++++ .../src/test/java/pkg/JUnit4Test.java} | 8 +- .../junit-4-5/src/test/java/pkg/JUnit5Test.java | 10 + .../{surefire-1727 => junit5-runner}/pom.xml | 44 +- .../src/test/java/examples/RootTest.java | 10 + .../src/test/java/examples/a/ATest.java | 10 + .../src/test/java/examples/b/BTest.java | 10 + .../src/test/java/pkg/JUnit5Tests.java | 15 + .../{surefire-1727 => junit5-spock}/pom.xml | 32 +- .../src/main/java/pkg/Calculator.java} | 9 +- .../src/test/groovy/pkg/CalculatorTest.groovy | 26 + .../src/test/resources/junit5-testng/pom.xml | 94 +++ .../src/test/java/pkg/JUnit5Test.java | 10 + .../src/test/java/pkg/TestNGTest.java} | 8 +- 27 files changed, 1427 insertions(+), 467 deletions(-) create mode 100644 maven-surefire-plugin/src/site/apt/examples/spock.apt.vm copy surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/{Surefire1055CorrectConcurrentTestCountIT.java => SpockIT.java} (69%) create mode 100644 surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/Surefire1787JUnit5IT.java create mode 100644 surefire-its/src/test/resources/junit-4-5/pom.xml copy surefire-its/src/test/resources/{fail-fast-junit/src/test/java/pkg/ETest.java => junit-4-5/src/test/java/pkg/JUnit4Test.java} (52%) create mode 100644 surefire-its/src/test/resources/junit-4-5/src/test/java/pkg/JUnit5Test.java copy surefire-its/src/test/resources/{surefire-1727 => junit5-runner}/pom.xml (62%) create mode 100644 surefire-its/src/test/resources/junit5-runner/src/test/java/examples/RootTest.java create mode 100644 surefire-its/src/test/resources/junit5-runner/src/test/java/examples/a/ATest.java create mode 100644 surefire-its/src/test/resources/junit5-runner/src/test/java/examples/b/BTest.java create mode 100644 surefire-its/src/test/resources/junit5-runner/src/test/java/pkg/JUnit5Tests.java copy surefire-its/src/test/resources/{surefire-1727 => junit5-spock}/pom.xml (73%) copy surefire-its/src/test/resources/{surefire-1185/src/test/java/pkg/RunningTest.java => junit5-spock/src/main/java/pkg/Calculator.java} (90%) create mode 100644 surefire-its/src/test/resources/junit5-spock/src/test/groovy/pkg/CalculatorTest.groovy create mode 100644 surefire-its/src/test/resources/junit5-testng/pom.xml create mode 100644 surefire-its/src/test/resources/junit5-testng/src/test/java/pkg/JUnit5Test.java copy surefire-its/src/test/resources/{fail-fast-testng/src/test/java/pkg/ETest.java => junit5-testng/src/test/java/pkg/TestNGTest.java} (57%)