Connect-Four/Jenkinsfile
EpicKnarvik97 840c122a4e
All checks were successful
EpicKnarvik97/Connect-Four/master This commit looks good
Adds Jenkinsfile
2020-02-14 14:52:08 +01:00

24 lines
627 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
sh 'mvn clean & mvn validate & mvn compile'
}
}
stage('Test') {
steps {
echo 'Testing...'
sh 'mvn clean & mvn test'
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
sh 'mvn clean & mvn compile & mvn package & mvn verify & mvn install'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}