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

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-redback-core.git


The following commit(s) were added to refs/heads/master by this push:
     new cd7d851  fix syntax
cd7d851 is described below

commit cd7d851f736ddfc910f69310f7c2dcb2cc68cdc8
Author: olivier lamy <[email protected]>
AuthorDate: Sun Dec 30 10:59:50 2018 +1000

    fix syntax
    
    Signed-off-by: olivier lamy <[email protected]>
---
 Jenkinsfile | 24 +++++++++++-------------
 1 file changed, 11 insertions(+), 13 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 9793573..51b5d3e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -44,18 +44,16 @@ pipeline {
     }
 
     stages {
-        stage( 'Builds' ) {
-                stage( 'BuildAndDeploy-JDK8' ) {
-                    options { timeout(time: 120, unit: 'MINUTES') }
-                    steps {
-                        mavenBuild( buildJdk, "clean deploy -U -fae -T3", 
'Maven 3.5.2', defaultPublishers)
-                    }
-                }post {
-                    failure {
-                        notifyBuild( "Failure in BuildAndDeploy-JDK8 Stage ")
-                    }
-                }
-
+        stage( 'BuildAndDeploy-JDK8' ) {
+            options { timeout(time: 120, unit: 'MINUTES') }
+            steps {
+                mavenBuild( buildJdk, "clean deploy -U -fae -T3", 'Maven 
3.5.2', defaultPublishers)
+            }
+        }post {
+            failure {
+                notifyBuild( "Failure in BuildAndDeploy-JDK8 Stage ")
+            }
+        }
 //                stage('JDK11') {
 //                    steps {
 //                        ws("${env.JOB_NAME}-JDK11") {
@@ -67,7 +65,7 @@ pipeline {
 //                        }
 //                    }
 //                }
-        }
+
     }
 
     post {

Reply via email to