diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 00000000..da5544df --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,21 @@ +pipeline { +agent any +tools { +maven 'maven' +} +stages { +stage ('intialize') { +stages { +sh *** + echo "PATH = $(PATH)" + echo "M2_HOME = $(M2_HOME)" + *** + } +} + +stage ('Build') { +sh 'mvn Clean package' + } + + } +}