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 2018/05/10 03:28:34 UTC

[maven-surefire] branch 1518 updated (92836be -> f8c0887)

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

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


 discard 92836be  jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1
 discard 060d373  [SUREFIRE-1518] Upgrade version of plexus-java to 0.9.8
     add 2d9b170  [SUREFIRE-1383] dependenciesToScan Does Not Leverage Classpath Elements
     new edf0a29  [SUREFIRE-1518] Upgrade version of plexus-java to 0.9.8
     new f8c0887  jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1

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   (92836be)
            \
             N -- N -- N   refs/heads/1518 (f8c0887)

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:
 .../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 +
 .../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 +-
 14 files changed, 793 insertions(+), 144 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
tibordigana@apache.org.

[maven-surefire] 02/02: jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f8c08872d5dbff3316d35ded20794a8ffa5f7842
Author: Tibor17 <ti...@apache.org>
AuthorDate: Tue May 8 12:59:24 2018 +0200

    jenkinsfile: windows-2012-1||windows-2012-2||windows-2016-1
---
 Jenkinsfile | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 5df67a0..c00a41e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -30,7 +30,7 @@ properties(
     ]
 )
 
-final def oses = ['linux', 'windows']
+final def oses = ['linux':'ubuntu', 'windows':'Windows && !windows-2012-3']
 final def mavens = env.BRANCH_NAME == 'master' ? ['3.2.x', '3.3.x', '3.5.x'] : ['3.5.x']
 final def jdks = [7, 8, 9, 10]
 
@@ -38,10 +38,11 @@ final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
 final def goals = ['clean', 'install', 'jacoco:report']
 final Map stages = [:]
 
-oses.eachWithIndex { os, indexOfOs ->
+oses.eachWithIndex { osMapping, indexOfOs ->
     mavens.eachWithIndex { maven, indexOfMaven ->
         jdks.eachWithIndex { jdk, indexOfJdk ->
-            final String label = jenkinsEnv.labelForOS(os);
+            def os = osMapping.key
+            def label = osMapping.value
             final String jdkTestName = jenkinsEnv.jdkFromVersion(os, jdk.toString())
             final String jdkName = jenkinsEnv.jdkFromVersion(os, '8')
             final String mvnName = jenkinsEnv.mvnFromVersion(os, maven)

-- 
To stop receiving notification emails like this one, please contact
tibordigana@apache.org.

[maven-surefire] 01/02: [SUREFIRE-1518] Upgrade version of plexus-java to 0.9.8

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit edf0a296f33085bb50072a2be17b7ac9a8d47efe
Author: Tibor17 <ti...@apache.org>
AuthorDate: Sun May 6 18:37:47 2018 +0200

    [SUREFIRE-1518] Upgrade version of plexus-java to 0.9.8
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5fdefd4..32b8e9d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -259,7 +259,7 @@
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
         <artifactId>plexus-java</artifactId>
-        <version>0.9.3</version>
+        <version>0.9.8</version>
       </dependency>
       <dependency>
         <groupId>org.mockito</groupId>

-- 
To stop receiving notification emails like this one, please contact
tibordigana@apache.org.