EpicKnarvik97
8fa0cca5ce
Some checks failed
EpicKnarvik97/Stargate/pipeline/head There was a failure building this commit
24 lines
584 B
Groovy
24 lines
584 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 test'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying...'
|
|
sh 'mvn verify -Dmaven.test.skip=true'
|
|
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
} |