diff --git a/Jenkinsfile b/Jenkinsfile index fb0de695..98f26244 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,15 +18,17 @@ withCredentials([usernameColonPassword(credentialsId: 'artifactory_publish', variable: 'artifactory_publish'), usernameColonPassword(credentialsId: 'artifactory_deploy', variable: 'artifactory_deploy'), - string(credentialsId: 'atlas_unity_coveralls_token', variable: 'coveralls_token')]) { + string(credentialsId: 'atlas_unity_coveralls_token', variable: 'coveralls_token'), + string(credentialsId: 'atlas_plugins_sonar_token', variable: 'sonar_token')]) { def testEnvironment = [ "artifactoryCredentials=${artifactory_publish}", "nugetkey=${artifactory_deploy}" ] - buildGradlePlugin plaforms: ['osx','windows','linux'], + buildGradlePlugin platforms: ['macos','windows','linux'], coverallsToken: coveralls_token, + sonarToken: sonar_token, testEnvironment: testEnvironment, labels: 'primary' } diff --git a/build.gradle b/build.gradle index f62a1405..4899fe12 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ */ plugins { - id 'net.wooga.plugins' version '2.1.1' + id 'net.wooga.plugins' version '2.2.0' } group 'net.wooga.gradle'