You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2018/04/17 17:12:46 UTC

[archiva-redback-components-modello-plugins] branch master updated: Jenkinsfile modifications

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

martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-redback-components-modello-plugins.git


The following commit(s) were added to refs/heads/master by this push:
     new ed6fe57  Jenkinsfile modifications
ed6fe57 is described below

commit ed6fe570931f315080449ed93d2be3d366ffc7e1
Author: Martin Stockhammer <ma...@ars.de>
AuthorDate: Tue Apr 17 19:12:44 2018 +0200

    Jenkinsfile modifications
---
 Jenkinsfile | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 625c5ea..0d3035f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -33,7 +33,7 @@ node(labels) {
     cleanWs()
 
     stage ('Clone Sources') {
-        git url: 'https://gitbox.apache.org/repos/asf/archiva-redback-components-modello-plugins.git'
+        checkout scm
     }
 
     stage ('Build') {
@@ -42,9 +42,8 @@ node(labels) {
                 jdk: buildJdk,
                 mavenSettingsConfig: deploySettings
         ) {
-            // Run the maven build
             sh "mvn clean install -B -U -e -fae -Dmaven.compiler.fork=false"
-        } // withMaven will discover the generated Maven artifacts, JUnit Surefire & FailSafe & FindBugs reports...
+        } 
     }
 
     stage ('Deploy') {
@@ -53,8 +52,7 @@ node(labels) {
                 jdk: buildJdk,
                 mavenSettingsConfig: deploySettings
         ) {
-            // Run the maven build
-            sh "mvn clean deploy -Dmaven.test.skip=true -B -U -e -fae -Dmaven.compiler.fork=false"
-        } // withMaven will discover the generated Maven artifacts, JUnit Surefire & FailSafe & FindBugs reports...
+            sh "mvn deploy -Dmaven.test.skip=true -B -U -e -fae -Dmaven.compiler.fork=false"
+        }
     }
 }

-- 
To stop receiving notification emails like this one, please contact
martin_s@apache.org.