Files
ServerMonitorBot/Jenkinsfile_CI
L_DelOff 94485ab9d2
Some checks failed
Hedgehog_server_CI/ServerMonitorBot/pipeline/head There was a failure building this commit
Hedgehog_server_CD/ServerMonitorBot/pipeline/head There was a failure building this commit
CI/CD fix
2023-11-20 22:02:23 +03:00

18 lines
499 B
Plaintext

pipeline {
agent {
docker {
image 'maven:3.9.5-eclipse-temurin-17'
args '-v /root/.m2:/root/.m2'
}
}
stages {
stage('Build') {
steps {
configFileProvider(
[configFile(fileId: 'maven-settings', variable: 'SETTINGS_XML_GLOBAL')]) {
sh 'mvn -B -DskipTests -X -s $MAVEN_SETTINGS clean package spring-boot:repackage'
}
}
}
}
}