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 2020/04/04 01:58:11 UTC

[logging-log4j2] branch master updated: Add site target

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/master by this push:
     new b9253bd  Add site target
b9253bd is described below

commit b9253bdd7dd511fc5c5e36a89608a9b64b9c66ec
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Fri Apr 3 20:57:51 2020 -0500

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

diff --git a/Jenkinsfile b/Jenkinsfile
index d9b756a..0fb175d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -31,12 +31,11 @@ pipeline {
                     agent { label 'ubuntu' }
                     steps {
                         withMaven(jdk: 'JDK 1.8 (latest)', maven: 'Maven 3 (latest)') {
-                            sh 'mvn -B -fae -t toolchains-jenkins-ubuntu.xml -Djenkins -V install'
+                            sh 'mvn -B -fae -t toolchains-jenkins-ubuntu.xml -Djenkins -V clean install site'
                         }
                     }
                     post {
                         always {
-                            //junit '*/target/*-reports/*.xml'
                             recordIssues tools: [cpd(), checkStyle(), pmdParser(), mavenConsole(), errorProne()]
                         }
                     }
@@ -46,7 +45,7 @@ pipeline {
                     steps {
                         bat 'if exist %userprofile%\\.embedmongo\\ rd /s /q %userprofile%\\.embedmongo'
                         withMaven(jdk: 'JDK 1.8 (latest)', maven: 'Maven 3 (latest)') {
-                            bat 'mvn -B -fae -t toolchains-jenkins-win.xml -V -Dfile.encoding=UTF-8 install'
+                            bat 'mvn -B -fae -t toolchains-jenkins-win.xml -V -Dfile.encoding=UTF-8 clean install'
                         }
                     }
                 }