DynmapCitizens/Jenkinsfile
EpicKnarvik97 06d63bd6fc
Some checks failed
EpicKnarvik97/DynmapCitizens/pipeline/head There was a failure building this commit
Prevents install in deploy phase
2022-11-26 15:08:16 +01:00

27 lines
684 B
Groovy

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 & mvn deploy -Dmaven.install.skip=true -Dmaven.test.skip=true'
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}