@@ -94,7 +94,7 @@ pipeline {
9494 }
9595 steps {
9696 echo ' Building'
97- sh ' ./mvnw -B -P${JENKINS_PROFILE},skip-prerequisite-check,with-sandbox,with- c,with-go,with-java ${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
97+ sh ' ./mvnw -B -P${JENKINS_PROFILE},skip-prerequisite-check,with-c,with-go,with-java ${MVN_TEST_FAIL_IGNORE} ${MVN_LOCAL_REPO_OPT} clean install'
9898 }
9999 post {
100100 always {
@@ -117,7 +117,7 @@ pipeline {
117117
118118 // We'll deploy to a relative directory so we can save
119119 // that and deploy in a later step on a different node
120- sh ' ./mvnw -U -P${JENKINS_PROFILE},skip-prerequisite-check,with-sandbox,with- c,with-go,with-java,update-generated-code,enable-all-checks ${MVN_TEST_FAIL_IGNORE} ${JQASSISTANT_NEO4J_VERSION} -DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir clean deploy'
120+ sh ' ./mvnw -U -P${JENKINS_PROFILE},skip-prerequisite-check,with-c,with-go,with-java,update-generated-code,enable-all-checks ${MVN_TEST_FAIL_IGNORE} ${JQASSISTANT_NEO4J_VERSION} -DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir clean deploy'
121121
122122 // Stash the build results so we can deploy them on another node
123123 stash name : ' plc4x-build-snapshots' , includes : ' local-snapshots-dir/**'
@@ -137,8 +137,8 @@ pipeline {
137137 steps {
138138 echo ' Checking Code Quality on SonarCloud'
139139 withCredentials([string(credentialsId : ' chris-sonarcloud-token' , variable : ' SONAR_TOKEN' )]) {
140- // sh './mvnw -B -P${JENKINS_PROFILE},skip-prerequisite-check,with-python,with-proxies,with-sandbox sonar:sonar ${SONARCLOUD_PARAMS} -Dsonar.login=${SONAR_TOKEN}'
141- sh ' ./mvnw -B -P${JENKINS_PROFILE},skip-prerequisite-check,with-c,with-go,with-java,with-sandbox sonar:sonar ${SONARCLOUD_PARAMS} -Dsonar.token=${SONAR_TOKEN}'
140+ // sh './mvnw -B -P${JENKINS_PROFILE},skip-prerequisite-check,with-python,with-proxies sonar:sonar ${SONARCLOUD_PARAMS} -Dsonar.login=${SONAR_TOKEN}'
141+ sh ' ./mvnw -B -P${JENKINS_PROFILE},skip-prerequisite-check,with-c,with-go,with-java sonar:sonar ${SONARCLOUD_PARAMS} -Dsonar.token=${SONAR_TOKEN}'
142142 }
143143 }
144144 }
0 commit comments