From 74e64fe2855b129ad00a2ce893d81fc7a872b5a3 Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Thu, 15 Oct 2020 12:50:39 +0200 Subject: [PATCH] First attempt to fix pipelines --- 002-maven-html-reports.groovy | 1 - 006-Saucelabs-Example.groovy | 1 - 007-ionic-pipeline-browser.groovy | 1 - 008-ionic-pipeline-mobile.groovy | 1 - 009-ionic-pipeline-complete.groovy | 1 - 010-sonarqube-scanner-analysis.groovy | 3 +-- 6 files changed, 1 insertion(+), 7 deletions(-) diff --git a/002-maven-html-reports.groovy b/002-maven-html-reports.groovy index fc3d447..74d148e 100644 --- a/002-maven-html-reports.groovy +++ b/002-maven-html-reports.groovy @@ -2,7 +2,6 @@ pipeline { agent any tools { maven "maven_jenkins" - jdk "java_jenkins" } stages { stage('Checkout') { diff --git a/006-Saucelabs-Example.groovy b/006-Saucelabs-Example.groovy index de71192..501a5f1 100644 --- a/006-Saucelabs-Example.groovy +++ b/006-Saucelabs-Example.groovy @@ -2,7 +2,6 @@ pipeline { agent any tools { maven "maven_jenkins" - jdk "java_jenkins" } environment { SAUCE_ACCESS = credentials('1e97caff-ff8e-42b9-95b0-76f1c98fcf38') //SauceLabs Credentials via Jenkins Credentials diff --git a/007-ionic-pipeline-browser.groovy b/007-ionic-pipeline-browser.groovy index e0caa5a..98af2c0 100644 --- a/007-ionic-pipeline-browser.groovy +++ b/007-ionic-pipeline-browser.groovy @@ -2,7 +2,6 @@ pipeline { agent any tools { maven "maven_jenkins" - jdk "java_jenkins" nodejs "nodejs" } stages { diff --git a/008-ionic-pipeline-mobile.groovy b/008-ionic-pipeline-mobile.groovy index 852a85f..e35da39 100644 --- a/008-ionic-pipeline-mobile.groovy +++ b/008-ionic-pipeline-mobile.groovy @@ -5,7 +5,6 @@ pipeline { } tools { maven "maven_jenkins" - jdk "java_jenkins" nodejs "nodejs" } stages { diff --git a/009-ionic-pipeline-complete.groovy b/009-ionic-pipeline-complete.groovy index 6ed0fbe..829c8c7 100644 --- a/009-ionic-pipeline-complete.groovy +++ b/009-ionic-pipeline-complete.groovy @@ -5,7 +5,6 @@ pipeline { } tools { maven "maven_jenkins" - jdk "java_jenkins" nodejs "nodejs" } stages { diff --git a/010-sonarqube-scanner-analysis.groovy b/010-sonarqube-scanner-analysis.groovy index c87ec38..31996cd 100644 --- a/010-sonarqube-scanner-analysis.groovy +++ b/010-sonarqube-scanner-analysis.groovy @@ -1,8 +1,7 @@ pipeline { agent any tools { - maven "maven_354" - jdk "java_8" + maven "maven_jenkins" } stages { stage('SCM') {