Adds Jenkinsfile and distribution management
All checks were successful
EpicKnarvik97/Minstrel/pipeline/head This commit looks good

This commit is contained in:
2022-11-26 04:14:38 +01:00
parent fdf77c19c2
commit ccd91fdf1b
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
}
}
}
}