From a29347c83966fa0068a3c00af3fefcd9f19ed329 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 1 Sep 2017 12:45:12 -0700 Subject: [PATCH] Revert "Switch to the buildPlugin() method for our plugin" On second thought, I'm going to keep this how I likes it This reverts commit 90f8dfd54db498ed83e3c969ae5beb6f4dcdbbd7. --- Jenkinsfile | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a2add5d..2227579 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,19 @@ #!/usr/bin/env groovy -buildPlugin() +pipeline { + agent { docker 'maven:3-alpine' } + + stages { + stage('Build') { + steps { + sh 'mvn clean install -DskipTests' + } + } + } + + post { + success { + archiveArtifacts artifacts: 'target/*.hpi', fingerprint: true + } + } +}