Moves stuff around
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
This commit is contained in:
2020-02-11 18:48:49 +01:00
parent 3a051abf2c
commit 0b3d46c704
13 changed files with 99 additions and 1 deletions

8
Jenkinsfile vendored
View File

@ -4,16 +4,24 @@ pipeline {
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
}
}
}