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 20:11:07 UTC

[maven-integration-testing] branch MNG-6726 updated: new Surefire version with new feature 'excludedEnvironmentVariables' excluding Jenkins' env 'JAVA_TOOL_OPTIONS'

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


The following commit(s) were added to refs/heads/MNG-6726 by this push:
     new 79a00af  new Surefire version with new feature 'excludedEnvironmentVariables' excluding Jenkins' env 'JAVA_TOOL_OPTIONS'
79a00af is described below

commit 79a00afc6d2f8bf9432c13e1499b600a78ba1ff2
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 | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 4bb9c7e..d97d995 100644
--- a/pom.xml
+++ b/pom.xml
@@ -132,12 +132,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>