Files
ServerMonitorBot/Jenkinsfile
L_DelOff dc07591612
Some checks failed
Hedgehog_server/ServerMonitorBot/pipeline/head There was a failure building this commit
агент
2023-11-19 22:03:19 +03:00

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'
}
}
}
}