This is an automated email from the ASF dual-hosted git repository. sor pushed a change to branch 1330 in repository https://gitbox.apache.org/repos/asf/maven-surefire.git.
discard 64fdcee Remove outdated JUnit5IT discard db1ec7f JUnitPlatformIT needs Java 1.8+ discard 3639dd4 [SUREFIRE-1330] JUnit 5 surefire-provider code donation add b6debff [SUREFIRE-1515] Fix for use case when an empty array is passed. add e66c64e [SUREFIRE-1503] Forked JVM immediately crashed on Unix/Linux due to new shutdown mechanism does not turn to the old shutdown mechanism add 2d9b170 [SUREFIRE-1383] dependenciesToScan Does Not Leverage Classpath Elements add edf0a29 [SUREFIRE-1518] Upgrade version of plexus-java to 0.9.8 add f8c0887 jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1 add e1ef55e [MNGSITE-328] use sha1 checksum instead of md5 new 2fbf08f [SUREFIRE-1330] JUnit 5 surefire-provider code donation 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 (64fdcee) \ N -- N -- N refs/heads/1330 (2fbf08f) 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 1 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: Jenkinsfile | 7 +- .../plugin/surefire/AbstractSurefireMojo.java | 53 +- .../plugin/surefire/util/DependencyScanner.java | 50 +- .../maven/plugin/surefire/util/ScannerUtil.java | 5 + .../maven/plugin/surefire/MojoMocklessTest.java | 625 +++++++++++++++++++++ .../surefire/util/DependenciesScannerTest.java | 9 +- .../plugin/surefire/util/ScannerUtilTest.java} | 45 +- .../org/apache/maven/surefire/JUnit4SuiteTest.java | 4 + pom.xml | 2 +- src/site/xdoc/download.xml.vm | 2 +- .../surefire/util/internal/DumpFileUtils.java | 2 +- .../maven/surefire/util/internal/StringUtils.java | 6 + .../surefire/util/internal/StringUtilsTest.java | 9 + .../apache/maven/surefire/booter/ForkedBooter.java | 6 +- .../apache/maven/surefire/booter/PpidChecker.java | 93 +-- .../apache/maven/surefire/booter/ProcessInfo.java | 19 +- .../maven/surefire/booter/PpidCheckerTest.java | 19 +- .../maven/surefire/booter/SystemUtilsTest.java | 4 +- ... => Surefire1383ScanSessionDependenciesIT.java} | 26 +- .../{surefire-1265 => surefire-1383}/pom.xml | 28 +- .../runner}/pom.xml | 28 +- .../src/main/java/pkg/DynamicRunningTest.java} | 19 +- .../{surefire-1367 => surefire-1383/sut}/pom.xml | 33 +- .../apache/maven/surefire/junitcore/TestSet.java | 8 +- 24 files changed, 901 insertions(+), 201 deletions(-) create mode 100644 maven-surefire-common/src/test/java/org/apache/maven/plugin/surefire/MojoMocklessTest.java copy maven-surefire-common/src/{main/java/org/apache/maven/plugin/surefire/util/DirectoryScanner.java => test/java/org/apache/maven/plugin/surefire/util/ScannerUtilTest.java} (50%) copy surefire-its/src/test/java/org/apache/maven/surefire/its/jiras/{Surefire817SystemExitIT.java => Surefire1383ScanSessionDependenciesIT.java} (70%) copy surefire-its/src/test/resources/{surefire-1265 => surefire-1383}/pom.xml (73%) copy surefire-its/src/test/resources/{surefire-1265 => surefire-1383/runner}/pom.xml (67%) copy surefire-its/src/test/resources/{surefire-1278-group-name-ending/src/test/java/pkg/ATest.java => surefire-1383/runner/src/main/java/pkg/DynamicRunningTest.java} (78%) copy surefire-its/src/test/resources/{surefire-1367 => surefire-1383/sut}/pom.xml (69%) -- To stop receiving notification emails like this one, please contact s...@apache.org.