diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000..800ffcdded --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,16 @@ +pipeline { + agent any + stages{ + stage('Build'){ + steps { + sh 'mvn clean package' + } + post { + success { + echo 'Now Archiving...' + archiveArtifacts artifacts: '**/target/*.war' + } + } + } + } +}