Merge remote-tracking branch 'origin/devops' into feature/task-30-docker
Hedgehog_server/ServerMonitorBot/pipeline/head There was a failure building this commit Details

pull/31/head
L_DelOff 2023-11-19 22:10:39 +03:00
commit 74f02e7827
1 changed files with 15 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'maven'
args '-v /root/.m2:/root/.m2'
}
}
stages {
stage('Build') {
steps {
sh 'mvn -B -DskipTests clean package'
}
}
}
}