This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
commit 41a1a33e4216bb489084f650d12ef37ed7efa08f Author: lburgazzoli <lburgazz...@gmail.com> AuthorDate: Wed Jun 5 17:35:18 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" } }