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 2019/08/03 22:15:51 UTC

[maven-integration-testing] branch MNG-6726 updated (79a00af -> c0497ba)

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

tibordigana pushed a change to branch MNG-6726
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git.


 discard 79a00af  new Surefire version with new feature 'excludedEnvironmentVariables' excluding Jenkins' env 'JAVA_TOOL_OPTIONS'
 discard fa980e7  empty inheritable JAVA_TOOL_OPTIONS
 discard f838934  [MNG-6726] Integration tests should use non empty MAVEN_OPTS. Jenkinsfile and 'core-it-suite' should accept custom MAVEN_OPTS from developers and their CLI.
     add 65b534a  Ensure any forked Maven executions are not spied on by Jenkins
     add fee37c6  [MNG-6720] MultiThreadedBuilder: wait for parallel running projects when using --fail-fast
     add 12f31a4  Add new bootstrap groups
     new 5a40bb1  [MNG-6726] Integration tests should use non empty MAVEN_OPTS. Jenkinsfile and 'core-it-suite' should accept custom MAVEN_OPTS from developers and their CLI.
     new 1c9aef2  empty inheritable JAVA_TOOL_OPTIONS
     new c0497ba  new Surefire version with new feature 'excludedEnvironmentVariables' excluding Jenkins' env 'JAVA_TOOL_OPTIONS'

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   (79a00af)
            \
             N -- N -- N   refs/heads/MNG-6726 (c0497ba)

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 3 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:
 .../c/1.0/c-1.0.pom => bootstrap/group-10/pom.xml} | 92 +++++++++++-----------
 .../src/test/resources/bootstrap/group-8/pom.xml   |  5 ++
 .../c/1.0/c-1.0.pom => bootstrap/group-9/pom.xml}  | 92 +++++++++++-----------
 core-it-suite/src/test/resources/bootstrap/pom.xml |  2 +
 pom.xml                                            | 18 ++++-
 5 files changed, 120 insertions(+), 89 deletions(-)
 copy core-it-suite/src/test/resources/{mng-4883/repo/org/apache/maven/its/mng4883/c/1.0/c-1.0.pom => bootstrap/group-10/pom.xml} (68%)
 copy core-it-suite/src/test/resources/{mng-4883/repo/org/apache/maven/its/mng4883/c/1.0/c-1.0.pom => bootstrap/group-9/pom.xml} (68%)


[maven-integration-testing] 02/03: empty inheritable JAVA_TOOL_OPTIONS

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

tibordigana pushed a commit to branch MNG-6726
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit 1c9aef20cb5b2c59e7a69f0e551aaf96aa30e515
Author: tibordigana <ti...@apache.org>
AuthorDate: Thu Aug 1 01:04:01 2019 +0200

    empty inheritable JAVA_TOOL_OPTIONS
---
 core-it-suite/pom.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/core-it-suite/pom.xml b/core-it-suite/pom.xml
index 82f2496..ce66e0f 100644
--- a/core-it-suite/pom.xml
+++ b/core-it-suite/pom.xml
@@ -333,8 +333,7 @@ under the License.
             <configuration>
               <skip>false</skip>
               <forkMode>once</forkMode>
-              <argLine>${surefireMemory}
-                -Dcom.sun.management.jmxremote=true</argLine>
+              <argLine>${surefireMemory} -Dorg.jenkinsci.plugins.pipeline.maven.eventspy.JenkinsMavenEventSpy.disabled=true</argLine>
               <!-- NOTE: Maven plugins have access to the system class path 
                 so keep it clean -->
               <useSystemClassLoader>false</useSystemClassLoader>


[maven-integration-testing] 03/03: new Surefire version with new feature 'excludedEnvironmentVariables' excluding Jenkins' env 'JAVA_TOOL_OPTIONS'

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

tibordigana pushed a commit to branch MNG-6726
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit c0497ba5804173e61b484bf6bb072489b92af71d
Author: tibordigana <ti...@apache.org>
AuthorDate: Sat Aug 3 22:10:54 2019 +0200

    new Surefire version with new feature 'excludedEnvironmentVariables' excluding Jenkins' env 'JAVA_TOOL_OPTIONS'
---
 pom.xml | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4bb9c7e..8944c66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,13 +86,29 @@ under the License.
     <repository>
       <id>apache.snapshots</id>
       <name>Apache Snapshot Repository</name>
-      <url>http://repository.apache.org/snapshots</url>
+      <url>https://repository.apache.org/content/groups/snapshots</url>
       <releases>
         <enabled>false</enabled>
       </releases>
     </repository>
   </repositories>
 
+  <pluginRepositories>
+    <pluginRepository>
+      <id>apache.snapshots.plugins</id>
+      <name>Apache Snapshot Plugin Repository</name>
+      <url>https://repository.apache.org/content/groups/snapshots</url>
+      <snapshots>
+        <enabled>true</enabled>
+        <updatePolicy>always</updatePolicy>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </pluginRepository>
+  </pluginRepositories>
+
   <profiles>
     <profile>
       <id>reporting</id>
@@ -132,12 +148,14 @@ under the License.
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
-          <version>2.22.0</version>
+          <version>3.0.0-SNAPSHOT</version>
           <configuration>
             <environmentVariables>
               <JENKINS_MAVEN_AGENT_DISABLED>true</JENKINS_MAVEN_AGENT_DISABLED>
-              <JAVA_TOOL_OPTIONS></JAVA_TOOL_OPTIONS>
             </environmentVariables>
+			<excludedEnvironmentVariables>
+			  <excludedEnvironmentVariable>JAVA_TOOL_OPTIONS</excludedEnvironmentVariable>
+			</excludedEnvironmentVariables>
           </configuration>
         </plugin>
         <plugin>


[maven-integration-testing] 01/03: [MNG-6726] Integration tests should use non empty MAVEN_OPTS. Jenkinsfile and 'core-it-suite' should accept custom MAVEN_OPTS from developers and their CLI.

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

tibordigana pushed a commit to branch MNG-6726
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit 5a40bb177b5ad3851cabf20c7983998d76258860
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Jul 30 13:22:47 2019 +0200

    [MNG-6726] Integration tests should use non empty MAVEN_OPTS. Jenkinsfile and 'core-it-suite' should accept custom MAVEN_OPTS from developers and their CLI.
---
 core-it-suite/pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/core-it-suite/pom.xml b/core-it-suite/pom.xml
index 444b31c..82f2496 100644
--- a/core-it-suite/pom.xml
+++ b/core-it-suite/pom.xml
@@ -348,6 +348,9 @@ under the License.
                   <value>false</value>
                 </property>
               </systemProperties>
+              <environmentVariables>
+                <MAVEN_OPTS>${env.MAVEN_OPTS}</MAVEN_OPTS>
+              </environmentVariables>
             </configuration>
           </plugin>
         </plugins>