You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2018/04/07 01:13:51 UTC

logging-log4j2 git commit: Add pre-install phase to install dependencies cleanly

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 5823e4f3f -> 9f23e2155


Add pre-install phase to install dependencies cleanly


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/9f23e215
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/9f23e215
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/9f23e215

Branch: refs/heads/master
Commit: 9f23e21555ad1d5301f7cf627719fd9fe76529f5
Parents: 5823e4f
Author: Matt Sicker <bo...@gmail.com>
Authored: Fri Apr 6 20:13:47 2018 -0500
Committer: Matt Sicker <bo...@gmail.com>
Committed: Fri Apr 6 20:13:47 2018 -0500

----------------------------------------------------------------------
 Jenkinsfile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/9f23e215/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index 0bddd62..cd834a8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -28,7 +28,8 @@ pipeline {
         stage('Build') {
             steps {
                 ansiColor('xterm') {
-                    sh 'mvn -V -e -t jenkins-toolchains.xml -Djenkins clean install'
+                    sh 'mvn -t jenkins-toolchains.xml -Djenkins -DskipTests=true -Dmaven.javadoc.skip=true -V install'
+                    sh 'mvn -t jenkins-toolchains.xml -Djenkins -V install'
                 }
             }
         }
@@ -36,7 +37,7 @@ pipeline {
             when { branch 'master' }
             steps {
                 ansiColor('xterm') {
-                    sh 'mvn deploy'
+                    sh 'mvn -t jenkins-toolchains.xml -Djenkins -V deploy'
                 }
             }
 //            post {