fix lib call

This commit is contained in:
Nana Janashia
2020-11-08 16:05:48 +01:00
parent 6a5572a5f7
commit 75f780bd0c

8
Jenkinsfile vendored
View File

@@ -18,12 +18,16 @@ pipeline {
}
stage("build jar") {
steps {
buildJar()
script {
buildJar()
}
}
}
stage("build image") {
steps {
buildImage()
script {
buildImage()
}
}
}
stage("deploy") {