Adds Jenkinsfile
Some checks failed
EpicKnarvik97/DynmapCitizens/pipeline/head There was a failure building this commit

This commit is contained in:
2022-11-26 14:36:59 +01:00
parent 0811886390
commit 56753efbc7
2 changed files with 41 additions and 0 deletions

27
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,27 @@
pipeline {
agent any
tools {
jdk 'JDK17'
}
stages {
stage('Build') {
steps {
echo 'Building...'
sh 'mvn clean & mvn validate & mvn compile'
}
}
stage('Test') {
steps {
echo 'Testing...'
sh 'mvn test'
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
sh 'mvn verify -Dmaven.test.skip=true'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}