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