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-components-spring-apacheds.git


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

commit 2636b487a00c603bdcbcc451d01e088473daaa0f
Author: olivier lamy <[email protected]>
AuthorDate: Sat Dec 29 21:43:18 2018 +1000

    sinplify Jenkinsfile
    
    Signed-off-by: olivier lamy <[email protected]>
---
 .gitignore  |  1 +
 Jenkinsfile | 49 +------------------------------------------------
 2 files changed, 2 insertions(+), 48 deletions(-)

diff --git a/.gitignore b/.gitignore
index 6f52bf1..7b6772c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@ target
 .DS_Store
 .site-content
 out
+*.iml
diff --git a/Jenkinsfile b/Jenkinsfile
index fb53c84..567e27c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -16,52 +16,5 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-/**
- *
- *
- * Jenkins Pipeline configuration.
- *
- */
-
-def labels = 'ubuntu'
-def buildJdk = 'JDK 1.8 (latest)'
-def buildMvn = 'Maven 3.5.2'
-def deploySettings = 'archiva-uid-jenkins'
-
-options {
-    disableConcurrentBuilds()
-    buildDiscarder(logRotator(numToKeepStr: '3', artifactNumToKeepStr: '2'))
-}
-
-node(labels) {
-
-    cleanWs()
-
-    stage ('Clone Sources') {
-        checkout scm
-    }
-
-    stage ('Build') {
-        withMaven(
-                maven: buildMvn,
-                jdk: buildJdk,
-                mavenSettingsConfig: deploySettings
-        ) {
-            sh "mvn clean install -B -U -e -fae -Dmaven.compiler.fork=false"
-        } 
-    }
 
-    stage ('Deploy') {
-        withMaven(
-                maven: buildMvn,
-                jdk: buildJdk,
-                mavenSettingsConfig: deploySettings
-        ) {
-            sh "mvn deploy -Dmaven.test.skip=true -B -U -e -fae 
-Dmaven.compiler.fork=false"
-        }
-    }
-    
-    post {
-        cleanWs()
-    }    
-}
+asfStandardBuild cmdline:"clean deploy"

Reply via email to