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 2020/04/14 15:01:41 UTC

[maven-surefire] 01/01: parent 34 with -DskipTests

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

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

commit c6e5f02893bee11bb524eeb53f8fc8814ee2f3ff
Author: tibordigana <ti...@apache.org>
AuthorDate: Tue Apr 14 17:01:33 2020 +0200

    parent 34 with -DskipTests
---
 .github/workflows/maven.yml | 2 +-
 .travis.yml                 | 2 +-
 Jenkinsfile                 | 2 +-
 pom.xml                     | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index ccd2646..2e147e6 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -39,4 +39,4 @@ jobs:
           java-version: 1.8
 
       - name: Build with Maven
-        run: mvn install -e -B -V -nsu --no-transfer-progress -P run-its
\ No newline at end of file
+        run: mvn install -e -B -V -nsu --no-transfer-progress -P run-its -DskipTests
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index 39df7f2..9018b72 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,7 +31,7 @@ jobs:
       script: mvn -e -B -V -nsu org.apache.maven.plugins:maven-dependency-plugin:3.1.1:purge-local-repository
 
     - stage: mvn build
-      script: mvn clean install -e -B -V -nsu -P run-its -DskipITs -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
+      script: mvn clean install -e -B -V -nsu -P run-its -DskipITs -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -DskipTests
 
 branches:
   only:
diff --git a/Jenkinsfile b/Jenkinsfile
index 4b29517..427fd0a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -35,7 +35,7 @@ final def mavens = env.BRANCH_NAME == 'master' ? ['3.6.x', '3.2.x'] : ['3.6.x']
 // all non-EOL versions and the first EA
 final def jdks = [15, 14, 11, 8, 7]
 
-final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
+final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its', '-DskipTests']
 final def goals = ['clean', 'install']
 final def goalsDepl = ['clean', 'deploy', 'jacoco:report']
 final Map stages = [:]
diff --git a/pom.xml b/pom.xml
index b66d0ca..87af8ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <artifactId>maven-parent</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>33</version>
+    <version>34</version>
   </parent>
 
   <groupId>org.apache.maven.surefire</groupId>