EpicKnarvik97
e14607140f
Some checks failed
EpicKnarvik97/DynmapCitizens/pipeline/head There was a failure building this commit
27 lines
635 B
Groovy
27 lines
635 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'
|
|
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
} |