Some checks failed
Hedgehog_server/ServerMonitorBot/pipeline/head There was a failure building this commit
15 lines
267 B
Groovy
15 lines
267 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'maven'
|
|
args '-v /root/.m2:/root/.m2'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'mvn -B -DskipTests clean package'
|
|
}
|
|
}
|
|
}
|
|
} |