Created
March 30, 2017 21:47
-
-
Save itzg/81cf816e3a0844b990a5267a9d2eb370 to your computer and use it in GitHub Desktop.
A declarative syntax Jenkinsfile for doing a simple maven build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
tools { | |
maven 'apache-maven-3.3.9' | |
} | |
stages { | |
stage('Build') { | |
steps { | |
sh 'mvn clean package' | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment