Add Jenkinsfile

This commit is contained in:
Mateusz Pieła 2024-03-10 20:27:09 +01:00
parent fc3a11cf40
commit 34427e75a1

27
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,27 @@
pipeline {
agent any
stages {
stage('Checkout') {
git branch: 'master',url: https://git.horizonnet.eu/mateusz/java-helloworld.git'
}
stage('Build') {
steps {
sh 'mvn clean compile'
}
}
stage('Test') {
steps {
sh 'mvn test'
junit '**/target/surefire-reports/*.xml'
jacoco
}
}
stage('Deploy') {
steps {
sh 'mvn package'
archiveArtifacts artifacts: '***/target/*.jar', fingerprint: true
}
}
}
}