EpicKnarvik97
0b3d46c704
Some checks failed
KnarCraft/FFmpegConvert/master There was a failure building this commit
Fixes packages for use with maven Updates pom Fixes broken link in licence Updates Jenkinsfile
28 lines
576 B
Groovy
28 lines
576 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building...'
|
|
mvn clean
|
|
mvn validate
|
|
mvn compile
|
|
}
|
|
}
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Testing...'
|
|
mvn test
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
echo 'Deploying...'
|
|
mvn package
|
|
mvn verify
|
|
mvn install
|
|
mvn deploy
|
|
}
|
|
}
|
|
}
|
|
} |