This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch camel-2.x in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
commit 0d63b5c6049293f899df22a4c40afe560af3037c Author: lburgazzoli <lburgazz...@gmail.com> AuthorDate: Wed Jun 5 17:36:38 2019 +0200 Fix Jenkinsfile --- Jenkinsfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1c57e46..02a8244 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -41,16 +41,9 @@ pipeline { } stages { - - stage('Test Vs Camel 2.x & Install') { - steps { - sh "./mvnw $MAVEN_PARAMS clean install -Dcamel2 -f pom.xml" - } - } - - stage('Test Vs Camel 3.x & Install') { + stage('Test & Install') { steps { - sh "./mvnw $MAVEN_PARAMS clean install -Dcamel3 -f pom.xml" + sh "./mvnw $MAVEN_PARAMS clean install -f pom.xml" } }