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

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


    omit 5c0cb88  Auto-resolve "missing" JUnit 5 artifacts
     add 0a56eb5  [maven-release-plugin] prepare release 
surefire-3.0.0-M1_vote-2
     add 9d52904  [maven-release-plugin] prepare for next development iteration
     add 5dcd984  [SUREFIRE-1591] Java 1.7 feature Diamonds replaced Generics
     add 0e212db  [SUREFIRE-1594] Java 1.7 feature try-catch - multiple 
exceptions in one catch
     add aa2f038  [SUREFIRE-1595] Java 1.7 feature System.lineSeparator()
     add b9ad0cf  [SUREFIRE-1596] Unnecessary check JAVA_RECENT == JAVA_1_7 in 
unit tests
     add 8510516  [SUREFIRE-1597] ModularClasspathForkConfiguration with debug 
logs (@args file and its path on file system)
     add e810bd8  [SUREFIRE-1598] Fixed typo in assertion statement in 
integration test Surefire855AllowFailsafeUseArtifactFileIT
     add f5cca5b  [SUREFIRE-1593] 3.0.0-M1 produces invalid code sources on 
Windows
     add f333b7d  [SUREFIRE-1531] Option to disable Java 9 modules
     add 2ccba31  [SUREFIRE-1531] Option to disable Java 9 modules
     add d8d03e6  [SUREFIRE-1600] Surefire Project using surefire:2.12.4 is not 
fully able to work with JDK 10+ on internal build system. Therefore 
surefire-shadefire should go with Surefire:3.0.0-M1.
     add 9b36828  [SUREFIRE-1568] Versions 2.21 and higher doesn't work with 
junit-platform for Java 9 module
     add edb3b71  [SUREFIRE-1590] Deploy multiple versions of Report XSD
     add 19f872d  [SUREFIRE-1605] NoClassDefFoundError (RunNotifier) with JDK 11
     add 553269f  [SUREFIRE-1606] maven-shared-utils must not be on provider's 
classpath
     add 59d8f5b  removed a hint from console warning
     add 04aceeb  [SUREFIRE-1585] Align JUnit Platform version at runtime

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   (5c0cb88)
            \
             N -- N -- N   refs/heads/SUREFIRE-1585 (04aceeb)

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:
 maven-failsafe-plugin/pom.xml                      |  12 +-
 .../maven/plugin/failsafe/IntegrationTestMojo.java |  25 ++-
 maven-surefire-common/pom.xml                      |   5 +-
 .../plugin/surefire/AbstractSurefireMojo.java      | 123 ++++++------
 .../maven/plugin/surefire/ClasspathCache.java      |   4 +-
 .../surefire/StartupReportConfiguration.java       |   2 +-
 .../surefire/SurefireDependencyResolver.java       |  10 +-
 .../maven/plugin/surefire/SurefireHelper.java      |   4 +-
 .../maven/plugin/surefire/TestClassPath.java       |   2 +-
 .../booterclient/DefaultForkConfiguration.java     |  11 +-
 .../surefire/booterclient/ForkNumberBucket.java    |   2 +-
 .../booterclient/JarManifestForkConfiguration.java |  35 +++-
 .../ModularClasspathForkConfiguration.java         |  91 +++++----
 .../plugin/surefire/booterclient/Platform.java     |   2 +-
 .../lazytestprovider/TestLessInputStream.java      |   6 +-
 .../lazytestprovider/TestProvidingInputStream.java |   2 +-
 .../surefire/booterclient/output/ForkClient.java   |   6 +-
 .../output/MultipleFailureException.java           |   2 +-
 .../output/ThreadedStreamConsumer.java             |   2 +-
 .../surefire/report/DefaultReporterFactory.java    |  14 +-
 .../surefire/report/StatelessXmlReporter.java      |   1 +
 .../plugin/surefire/report/TestSetRunListener.java |   2 +-
 .../maven/plugin/surefire/report/TestSetStats.java |   4 +-
 .../plugin/surefire/util/DirectoryScanner.java     |   2 +-
 .../maven/plugin/surefire/util/Relocator.java      |   2 +-
 .../plugin/surefire/util/SpecificFileFilter.java   |   2 +-
 .../AbstractSurefireMojoJava7PlusTest.java         |  35 +++-
 .../plugin/surefire/AbstractSurefireMojoTest.java  |  20 +-
 .../maven/plugin/surefire/MojoMocklessTest.java    |  12 ++
 .../surefire/SurefireDependencyResolverTest.java   |  12 +-
 .../maven/plugin/surefire/SurefireHelperTest.java  |   2 +-
 .../plugin/surefire/SurefirePropertiesTest.java    |   4 +-
 ...ooterDeserializerProviderConfigurationTest.java |   8 +-
 .../booterclient/DefaultForkConfigurationTest.java |   6 +-
 .../JarManifestForkConfigurationTest.java          | 221 +++++++++++++++++++++
 .../plugin/surefire/booterclient/MockReporter.java |   4 +-
 .../ModularClasspathForkConfigurationTest.java     |  88 +++++---
 .../report/DefaultReporterFactoryTest.java         |  22 +-
 .../surefire/report/StatelessXmlReporterTest.java  |   2 +-
 .../plugin/surefire/util/DirectoryScannerTest.java |   2 +-
 .../org/apache/maven/surefire/JUnit4SuiteTest.java |  10 +-
 .../apache/maven/surefire/util/RelocatorTest.java  |   4 +-
 maven-surefire-plugin/pom.xml                      |  23 ++-
 .../maven/plugin/surefire/SurefirePlugin.java      |  25 ++-
 .../site/apt/examples/rerun-failing-tests.apt.vm   |   8 +-
 maven-surefire-plugin/src/site/apt/index.apt.vm    |   9 +-
 ...-report.xsd => legacy-surefire-test-report.xsd} |  66 +++---
 ...est-report.xsd => surefire-test-report-3.0.xsd} |   2 +-
 maven-surefire-report-plugin/pom.xml               |   5 +-
 .../report/AbstractSurefireReportMojo.java         |   4 +-
 .../report/SurefireSchemaValidationTest.java       |   2 +-
 pom.xml                                            |   6 +-
 surefire-api/pom.xml                               |   2 +-
 .../surefire/runorder/RunEntryStatisticsMap.java   |   2 +-
 .../maven/surefire/SpecificTestClassFilter.java    |   2 +-
 .../maven/surefire/booter/SurefireReflector.java   |   2 +-
 .../maven/surefire/cli/CommandLineOption.java      |   4 +-
 .../ConsoleOutputReceiverForCurrentThread.java     |   2 +-
 .../maven/surefire/report/SimpleReportEntry.java   |   2 +-
 .../maven/surefire/testset/TestListResolver.java   |   6 +-
 .../apache/maven/surefire/testset/TestRequest.java |   2 +-
 .../surefire/util/DefaultDirectoryScanner.java     |   2 +-
 .../maven/surefire/util/DefaultScanResult.java     |   4 +-
 .../org/apache/maven/surefire/util/RunOrder.java   |   2 +-
 .../maven/surefire/util/internal/ImmutableMap.java |   4 +-
 .../maven/surefire/util/internal/StringUtils.java  |   3 +-
 .../surefire/testset/TestListResolverTest.java     |  20 +-
 .../surefire/util/DefaultDirectoryScannerTest.java |   4 +-
 .../apache/maven/surefire/util/ScanResultTest.java |   2 +-
 .../surefire/util/internal/ImmutableMapTest.java   |  16 +-
 surefire-booter/pom.xml                            |   2 +-
 .../maven/surefire/booter/IsolatedClassLoader.java |   2 +-
 .../maven/surefire/booter/PropertiesWrapper.java   |   2 +-
 .../surefire/booter/StartupConfiguration.java      |   2 +-
 .../surefire/booter/NewClassLoaderRunner.java      |   4 +-
 .../surefire/booter/PropertiesWrapperTest.java     |   4 +-
 surefire-grouper/pom.xml                           |   2 +-
 .../surefire/group/match/JoinGroupMatcher.java     |   2 +-
 surefire-its/pom.xml                               |   5 +-
 .../maven/surefire/its/AbstractFailFastIT.java     |   2 +-
 .../maven/surefire/its/AbstractJigsawIT.java       |   7 +-
 .../org/apache/maven/surefire/its/ForkModeIT.java  |   2 +-
 .../maven/surefire/its/ForkModeMultiModuleIT.java  |   6 +-
 .../maven/surefire/its/JUnitPlatformEnginesIT.java |  22 +-
 .../apache/maven/surefire/its/ModulePathIT.java    |  20 ++
 .../maven/surefire/its/TestMethodPatternIT.java    |   4 +-
 .../maven/surefire/its/TestSingleMethodIT.java     |   4 +-
 .../apache/maven/surefire/its/TwoTestCasesIT.java  |   2 +-
 .../surefire/its/fixture/HelperAssertions.java     |   4 +-
 .../surefire/its/fixture/OutputValidator.java      |   2 +-
 .../surefire/its/fixture/SurefireLauncher.java     |   2 +-
 .../Surefire1082ParallelJUnitParameterizedIT.java  |   8 +-
 .../its/jiras/Surefire1098BalancedRunOrderIT.java  |   2 +-
 .../Surefire747MethodParallelWithSuiteCountIT.java |   2 +-
 .../junit-platform-multiple-engines/pom.xml        |  16 +-
 .../src/test/resources/junit-platform/pom.xml      |   8 +-
 .../core/surefireJunitTests/BaseTest.java          |   2 +-
 .../test/java/jiras/surefre855/bundle/FooIT.java   |   2 +-
 .../src/test/java/jiras/surefire855/jar/FooIT.java |   2 +-
 .../surefire/selfdestruct/SelfDestructMojo.java    |   2 +-
 surefire-logger-api/pom.xml                        |   2 +-
 surefire-providers/common-java5/pom.xml            |   2 +-
 .../surefire/report/SmartStackTraceParser.java     |   4 +-
 .../maven/surefire/report/RunnableTestClass1.java  |   2 +-
 .../surefire/report/SmartStackTraceParserTest.java |   4 +-
 surefire-providers/common-junit3/pom.xml           |   2 +-
 surefire-providers/common-junit4/pom.xml           |   6 +-
 .../surefire/common/junit4/JUnit4ProviderUtil.java |   2 +-
 .../surefire/common/junit4/JUnit4RunListener.java  |   2 +-
 .../common/junit4/JUnit4RunListenerFactory.java    |   2 +-
 .../common/junit4/JUnitTestFailureListener.java    |   2 +-
 .../surefire/common/junit4/MatchDescriptions.java  |   2 +-
 .../maven/surefire/common/junit4/Notifier.java     |   4 +-
 .../apache/maven/surefire/junit4/MockReporter.java |   2 +-
 .../common/junit4/JUnit4ProviderUtilTest.java      |   2 +-
 surefire-providers/common-junit48/pom.xml          |   2 +-
 .../surefire/common/junit48/MethodFilter.java      |   4 +-
 surefire-providers/pom.xml                         |   2 +-
 surefire-providers/surefire-junit-platform/pom.xml |   2 +-
 surefire-providers/surefire-junit3/pom.xml         |   2 +-
 surefire-providers/surefire-junit4/pom.xml         |   2 +-
 surefire-providers/surefire-junit47/pom.xml        |   5 +-
 .../surefire/junitcore/JUnitCoreParameters.java    |   2 +-
 .../surefire/junitcore/JUnitCoreProvider.java      |   2 +-
 .../maven/surefire/junitcore/LogicalStream.java    |   2 +-
 .../maven/surefire/junitcore/TestMethod.java       |   4 +-
 .../apache/maven/surefire/junitcore/TestSet.java   |   4 +-
 .../surefire/junitcore/pc/InvokerStrategy.java     |   2 +-
 .../surefire/junitcore/pc/ParallelComputer.java    |   4 +-
 .../junitcore/pc/ParallelComputerBuilder.java      |  24 +--
 .../surefire/junitcore/pc/ShutdownStatus.java      |   2 +-
 .../junitcore/pc/SingleThreadScheduler.java        |   2 +-
 .../junitcore/ConcurrentRunListenerTest.java       |   4 +-
 .../ConfigurableParallelComputerTest.java          |   2 +-
 .../junitcore/JUnitCoreParametersTest.java         |  12 +-
 .../junitcore/JUnitCoreRunListenerTest.java        |   8 +-
 .../maven/surefire/junitcore/JUnitCoreTester.java  |   2 +-
 .../maven/surefire/junitcore/Surefire746Test.java  |   6 +-
 .../pc/OptimizedParallelComputerTest.java          |  24 +--
 .../junitcore/pc/ParallelComputerBuilderTest.java  |   6 +-
 .../junitcore/pc/ParallelComputerUtilTest.java     |  82 ++++----
 surefire-providers/surefire-testng-utils/pom.xml   |   2 +-
 .../testng/utils/GroupMatcherMethodSelector.java   |   2 +-
 surefire-providers/surefire-testng/pom.xml         |   2 +-
 .../surefire/testng/TestNGDirectoryTestSuite.java  |   2 +-
 .../maven/surefire/testng/TestNGXmlTestSuite.java  |   4 +-
 .../testng/conf/AbstractDirectConfigurator.java    |   8 +-
 .../testng/conf/TestNGMapConfigurator.java         |   4 +-
 .../testng/conf/TestNG513ConfiguratorTest.java     |   2 +-
 .../testng/conf/TestNG5141ConfiguratorTest.java    |   2 +-
 .../testng/conf/TestNG5143ConfiguratorTest.java    |   2 +-
 .../testng/conf/TestNGMapConfiguratorTest.java     |   2 +-
 surefire-report-parser/pom.xml                     |   2 +-
 .../plugins/surefire/report/ReportTestSuite.java   |   2 +-
 .../surefire/report/SurefireReportParser.java      |  12 +-
 .../surefire/report/ReportTestSuiteTest.java       |   2 +-
 .../surefire/report/SurefireReportParserTest.java  |  10 +-
 .../surefire/report/TestSuiteXmlParserTest.java    |   2 +-
 surefire-shadefire/pom.xml                         |  20 +-
 ...che.maven.surefire.providerapi.SurefireProvider |   2 +-
 160 files changed, 975 insertions(+), 564 deletions(-)
 create mode 100644 
maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/booterclient/JarManifestForkConfigurationTest.java
 copy maven-surefire-plugin/src/site/resources/xsd/{surefire-test-report.xsd => 
legacy-surefire-test-report.xsd} (65%)
 rename maven-surefire-plugin/src/site/resources/xsd/{surefire-test-report.xsd 
=> surefire-test-report-3.0.xsd} (99%)

Reply via email to