We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3df0099 commit 97abb6bCopy full SHA for 97abb6b
1 file changed
Jenkinsfile
@@ -9,19 +9,19 @@ pipeline {
9
options {
10
buildDiscarder(logRotator(numToKeepStr: '3'))
11
}
12
-
+
13
stages {
14
15
stage('build and deploy to nexus'){
16
17
steps {
18
19
container('containerproxy-build') {
20
21
configFileProvider([configFile(fileId: 'maven-settings-rsb', variable: 'MAVEN_SETTINGS_RSB')]) {
22
23
- sh 'mvn -s $MAVEN_SETTINGS_RSB -U clean install deploy -DskipTests=true'
24
+ sh 'mvn -B -s $MAVEN_SETTINGS_RSB -U clean install deploy -DskipTests=true'
25
26
27
0 commit comments