Skip to content

Commit

Permalink
Revert "Switch to the buildPlugin() method for our plugin"
Browse files Browse the repository at this point in the history
On second thought, I'm going to keep this how I likes it

This reverts commit 90f8dfd.
  • Loading branch information
R. Tyler Croy committed Sep 1, 2017
1 parent 90f8dfd commit a29347c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -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
}
}
}

0 comments on commit a29347c

Please sign in to comment.