1 // Jest Snapshot v1, https://goo.gl/fbAQLP
3 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
5 id "org.sonarqube" version "4.0.0.2929"
10 property "sonar.projectKey", "my-project"
11 property "sonar.projectName", "MyProject"
16 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
18 id("org.sonarqube") version "4.0.0.2929"
23 property("sonar.projectKey", "my-project")
24 property("sonar.projectName", "MyProject")
29 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: cfamily linux jenkinsfile 1`] = `
34 stage('Download Build Wrapper') {
36 sh "curl -sSLo build-wrapper-linux-x86.zip http://localhost:9000/static/cpp/build-wrapper-linux-x86.zip"
37 sh "unzip -o build-wrapper-linux-x86.zip -d .sonar"
40 sh ".sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output <your clean build command>"
42 stage('SonarQube Analysis') {
43 def scannerHome = tool 'SonarScanner';
45 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
51 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: cfamily macos jenkinsfile 1`] = `
56 stage('Download Build Wrapper') {
59 curl -sSLo build-wrapper-macosx-x86.zip http://localhost:9000/static/cpp/build-wrapper-macosx-x86.zip
60 unzip -o build-wrapper-macosx-x86.zip -d .sonar
65 .sonar/build-wrapper-macosx-x86/build-wrapper-macosx-x86 --out-dir bw-output <your clean build command>
68 stage('SonarQube Analysis') {
69 def scannerHome = tool 'SonarScanner';
71 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
77 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: cfamily windows jenkinsfile 1`] = `
82 stage('Download Build Wrapper') {
84 $path = "$HOME/.sonar/build-wrapper-win-x86.zip"
85 rm build-wrapper-win-x86 -Recurse -Force -ErrorAction SilentlyContinue
86 rm $path -Force -ErrorAction SilentlyContinue
88 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
89 (New-Object System.Net.WebClient).DownloadFile(http://localhost:9000/static/cpp/build-wrapper-win-x86.zip", $path)
90 Add-Type -AssemblyName System.IO.Compression.FileSystem
91 [System.IO.Compression.ZipFile]::ExtractToDirectory($path, "$HOME/.sonar")
96 $env:Path += ";$HOME/.sonar/build-wrapper-win-x86"
97 build-wrapper-win-x86-64 --out-dir bw-output <your clean build command>
100 stage('SonarQube Analysis') {
101 def scannerHome = tool 'SonarScanner';
103 powershell "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
109 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: gradle jenkinsfile 1`] = `
114 stage('SonarQube Analysis') {
122 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: jenkins url 1`] = `"***JENKINS_SERVER_URL***/bitbucket-scmsource-hook/notify?server_url=***BITBUCKET_URL***"`;
124 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: linux dotnet core jenkinsfile 1`] = `
129 stage('SonarQube Analysis') {
130 def scannerHome = tool 'SonarScanner for MSBuild'
132 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
134 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll end"
141 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: maven jenkinsfile 1`] = `
146 stage('SonarQube Analysis') {
147 def mvn = tool 'Default Maven';
149 sh "\${mvn}/bin/mvn clean verify sonar:sonar -Dsonar.projectKey=my-project -Dsonar.projectName='MyProject'"
155 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: other build tools jenkinsfile 1`] = `
160 stage('SonarQube Analysis') {
161 def scannerHome = tool 'SonarScanner';
163 sh "\${scannerHome}/bin/sonar-scanner"
169 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: other build tools sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
171 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: ref spec 1`] = `"+refs/heads/*:refs/remotes/@{remote}/*"`;
173 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
175 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: windows dotnet core jenkinsfile 1`] = `
180 stage('SonarQube Analysis') {
181 def scannerHome = tool 'SonarScanner for MSBuild'
183 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
185 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll end"
192 exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: windows dotnet framework jenkinsfile 1`] = `
197 stage('SonarQube Analysis') {
198 def msbuildHome = tool 'Default MSBuild'
199 def scannerHome = tool 'SonarScanner for MSBuild'
201 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" begin /k:\\"my-project\\""
202 bat "\\"\${msbuildHome}\\\\MSBuild.exe\\" /t:Rebuild"
203 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" end"
210 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
212 id "org.sonarqube" version "4.0.0.2929"
217 property "sonar.projectKey", "my-project"
218 property "sonar.projectName", "MyProject"
223 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
225 id("org.sonarqube") version "4.0.0.2929"
230 property("sonar.projectKey", "my-project")
231 property("sonar.projectName", "MyProject")
236 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: cfamily linux jenkinsfile 1`] = `
241 stage('Download Build Wrapper') {
243 sh "curl -sSLo build-wrapper-linux-x86.zip http://localhost:9000/static/cpp/build-wrapper-linux-x86.zip"
244 sh "unzip -o build-wrapper-linux-x86.zip -d .sonar"
247 sh ".sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output <your clean build command>"
249 stage('SonarQube Analysis') {
250 def scannerHome = tool 'SonarScanner';
252 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
258 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: cfamily macos jenkinsfile 1`] = `
263 stage('Download Build Wrapper') {
266 curl -sSLo build-wrapper-macosx-x86.zip http://localhost:9000/static/cpp/build-wrapper-macosx-x86.zip
267 unzip -o build-wrapper-macosx-x86.zip -d .sonar
272 .sonar/build-wrapper-macosx-x86/build-wrapper-macosx-x86 --out-dir bw-output <your clean build command>
275 stage('SonarQube Analysis') {
276 def scannerHome = tool 'SonarScanner';
278 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
284 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: cfamily windows jenkinsfile 1`] = `
289 stage('Download Build Wrapper') {
291 $path = "$HOME/.sonar/build-wrapper-win-x86.zip"
292 rm build-wrapper-win-x86 -Recurse -Force -ErrorAction SilentlyContinue
293 rm $path -Force -ErrorAction SilentlyContinue
295 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
296 (New-Object System.Net.WebClient).DownloadFile(http://localhost:9000/static/cpp/build-wrapper-win-x86.zip", $path)
297 Add-Type -AssemblyName System.IO.Compression.FileSystem
298 [System.IO.Compression.ZipFile]::ExtractToDirectory($path, "$HOME/.sonar")
303 $env:Path += ";$HOME/.sonar/build-wrapper-win-x86"
304 build-wrapper-win-x86-64 --out-dir bw-output <your clean build command>
307 stage('SonarQube Analysis') {
308 def scannerHome = tool 'SonarScanner';
310 powershell "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
316 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: gradle jenkinsfile 1`] = `
321 stage('SonarQube Analysis') {
329 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: jenkins url 1`] = `"***JENKINS_SERVER_URL***/bitbucket-scmsource-hook/notify"`;
331 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: linux dotnet core jenkinsfile 1`] = `
336 stage('SonarQube Analysis') {
337 def scannerHome = tool 'SonarScanner for MSBuild'
339 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
341 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll end"
348 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: maven jenkinsfile 1`] = `
353 stage('SonarQube Analysis') {
354 def mvn = tool 'Default Maven';
356 sh "\${mvn}/bin/mvn clean verify sonar:sonar -Dsonar.projectKey=my-project -Dsonar.projectName='MyProject'"
362 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: other build tools jenkinsfile 1`] = `
367 stage('SonarQube Analysis') {
368 def scannerHome = tool 'SonarScanner';
370 sh "\${scannerHome}/bin/sonar-scanner"
376 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: other build tools sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
378 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: ref spec 1`] = `"+refs/heads/*:refs/remotes/@{remote}/*"`;
380 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
382 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: windows dotnet core jenkinsfile 1`] = `
387 stage('SonarQube Analysis') {
388 def scannerHome = tool 'SonarScanner for MSBuild'
390 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
392 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll end"
399 exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: windows dotnet framework jenkinsfile 1`] = `
404 stage('SonarQube Analysis') {
405 def msbuildHome = tool 'Default MSBuild'
406 def scannerHome = tool 'SonarScanner for MSBuild'
408 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" begin /k:\\"my-project\\""
409 bat "\\"\${msbuildHome}\\\\MSBuild.exe\\" /t:Rebuild"
410 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" end"
417 exports[`github: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
419 id "org.sonarqube" version "4.0.0.2929"
424 property "sonar.projectKey", "my-project"
425 property "sonar.projectName", "MyProject"
430 exports[`github: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
432 id("org.sonarqube") version "4.0.0.2929"
437 property("sonar.projectKey", "my-project")
438 property("sonar.projectName", "MyProject")
443 exports[`github: can select devops platform and complete all the steps with copying code snippets: cfamily linux jenkinsfile 1`] = `
448 stage('Download Build Wrapper') {
450 sh "curl -sSLo build-wrapper-linux-x86.zip http://localhost:9000/static/cpp/build-wrapper-linux-x86.zip"
451 sh "unzip -o build-wrapper-linux-x86.zip -d .sonar"
454 sh ".sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output <your clean build command>"
456 stage('SonarQube Analysis') {
457 def scannerHome = tool 'SonarScanner';
459 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
465 exports[`github: can select devops platform and complete all the steps with copying code snippets: cfamily macos jenkinsfile 1`] = `
470 stage('Download Build Wrapper') {
473 curl -sSLo build-wrapper-macosx-x86.zip http://localhost:9000/static/cpp/build-wrapper-macosx-x86.zip
474 unzip -o build-wrapper-macosx-x86.zip -d .sonar
479 .sonar/build-wrapper-macosx-x86/build-wrapper-macosx-x86 --out-dir bw-output <your clean build command>
482 stage('SonarQube Analysis') {
483 def scannerHome = tool 'SonarScanner';
485 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
491 exports[`github: can select devops platform and complete all the steps with copying code snippets: cfamily windows jenkinsfile 1`] = `
496 stage('Download Build Wrapper') {
498 $path = "$HOME/.sonar/build-wrapper-win-x86.zip"
499 rm build-wrapper-win-x86 -Recurse -Force -ErrorAction SilentlyContinue
500 rm $path -Force -ErrorAction SilentlyContinue
502 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
503 (New-Object System.Net.WebClient).DownloadFile(http://localhost:9000/static/cpp/build-wrapper-win-x86.zip", $path)
504 Add-Type -AssemblyName System.IO.Compression.FileSystem
505 [System.IO.Compression.ZipFile]::ExtractToDirectory($path, "$HOME/.sonar")
510 $env:Path += ";$HOME/.sonar/build-wrapper-win-x86"
511 build-wrapper-win-x86-64 --out-dir bw-output <your clean build command>
514 stage('SonarQube Analysis') {
515 def scannerHome = tool 'SonarScanner';
517 powershell "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
523 exports[`github: can select devops platform and complete all the steps with copying code snippets: gradle jenkinsfile 1`] = `
528 stage('SonarQube Analysis') {
536 exports[`github: can select devops platform and complete all the steps with copying code snippets: jenkins url 1`] = `"***JENKINS_SERVER_URL***/github-webhook/"`;
538 exports[`github: can select devops platform and complete all the steps with copying code snippets: linux dotnet core jenkinsfile 1`] = `
543 stage('SonarQube Analysis') {
544 def scannerHome = tool 'SonarScanner for MSBuild'
546 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
548 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll end"
555 exports[`github: can select devops platform and complete all the steps with copying code snippets: maven jenkinsfile 1`] = `
560 stage('SonarQube Analysis') {
561 def mvn = tool 'Default Maven';
563 sh "\${mvn}/bin/mvn clean verify sonar:sonar -Dsonar.projectKey=my-project -Dsonar.projectName='MyProject'"
569 exports[`github: can select devops platform and complete all the steps with copying code snippets: other build tools jenkinsfile 1`] = `
574 stage('SonarQube Analysis') {
575 def scannerHome = tool 'SonarScanner';
577 sh "\${scannerHome}/bin/sonar-scanner"
583 exports[`github: can select devops platform and complete all the steps with copying code snippets: other build tools sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
585 exports[`github: can select devops platform and complete all the steps with copying code snippets: ref spec 1`] = `"+refs/heads/*:refs/remotes/@{remote}/*"`;
587 exports[`github: can select devops platform and complete all the steps with copying code snippets: sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
589 exports[`github: can select devops platform and complete all the steps with copying code snippets: windows dotnet core jenkinsfile 1`] = `
594 stage('SonarQube Analysis') {
595 def scannerHome = tool 'SonarScanner for MSBuild'
597 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
599 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll end"
606 exports[`github: can select devops platform and complete all the steps with copying code snippets: windows dotnet framework jenkinsfile 1`] = `
611 stage('SonarQube Analysis') {
612 def msbuildHome = tool 'Default MSBuild'
613 def scannerHome = tool 'SonarScanner for MSBuild'
615 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" begin /k:\\"my-project\\""
616 bat "\\"\${msbuildHome}\\\\MSBuild.exe\\" /t:Rebuild"
617 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" end"
624 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
626 id "org.sonarqube" version "4.0.0.2929"
631 property "sonar.projectKey", "my-project"
632 property "sonar.projectName", "MyProject"
637 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
639 id("org.sonarqube") version "4.0.0.2929"
644 property("sonar.projectKey", "my-project")
645 property("sonar.projectName", "MyProject")
650 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: cfamily linux jenkinsfile 1`] = `
655 stage('Download Build Wrapper') {
657 sh "curl -sSLo build-wrapper-linux-x86.zip http://localhost:9000/static/cpp/build-wrapper-linux-x86.zip"
658 sh "unzip -o build-wrapper-linux-x86.zip -d .sonar"
661 sh ".sonar/build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output <your clean build command>"
663 stage('SonarQube Analysis') {
664 def scannerHome = tool 'SonarScanner';
666 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
672 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: cfamily macos jenkinsfile 1`] = `
677 stage('Download Build Wrapper') {
680 curl -sSLo build-wrapper-macosx-x86.zip http://localhost:9000/static/cpp/build-wrapper-macosx-x86.zip
681 unzip -o build-wrapper-macosx-x86.zip -d .sonar
686 .sonar/build-wrapper-macosx-x86/build-wrapper-macosx-x86 --out-dir bw-output <your clean build command>
689 stage('SonarQube Analysis') {
690 def scannerHome = tool 'SonarScanner';
692 sh "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
698 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: cfamily windows jenkinsfile 1`] = `
703 stage('Download Build Wrapper') {
705 $path = "$HOME/.sonar/build-wrapper-win-x86.zip"
706 rm build-wrapper-win-x86 -Recurse -Force -ErrorAction SilentlyContinue
707 rm $path -Force -ErrorAction SilentlyContinue
709 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
710 (New-Object System.Net.WebClient).DownloadFile(http://localhost:9000/static/cpp/build-wrapper-win-x86.zip", $path)
711 Add-Type -AssemblyName System.IO.Compression.FileSystem
712 [System.IO.Compression.ZipFile]::ExtractToDirectory($path, "$HOME/.sonar")
717 $env:Path += ";$HOME/.sonar/build-wrapper-win-x86"
718 build-wrapper-win-x86-64 --out-dir bw-output <your clean build command>
721 stage('SonarQube Analysis') {
722 def scannerHome = tool 'SonarScanner';
724 powershell "\${scannerHome}/bin/sonar-scanner -Dsonar.cfamily.build-wrapper-output=bw-output"
730 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: gradle jenkinsfile 1`] = `
735 stage('SonarQube Analysis') {
743 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: jenkins url 1`] = `"***JENKINS_SERVER_URL***/gitlab-webhook/post"`;
745 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: linux dotnet core jenkinsfile 1`] = `
750 stage('SonarQube Analysis') {
751 def scannerHome = tool 'SonarScanner for MSBuild'
753 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
755 sh "dotnet \${scannerHome}/SonarScanner.MSBuild.dll end"
762 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: maven jenkinsfile 1`] = `
767 stage('SonarQube Analysis') {
768 def mvn = tool 'Default Maven';
770 sh "\${mvn}/bin/mvn clean verify sonar:sonar -Dsonar.projectKey=my-project -Dsonar.projectName='MyProject'"
776 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: other build tools jenkinsfile 1`] = `
781 stage('SonarQube Analysis') {
782 def scannerHome = tool 'SonarScanner';
784 sh "\${scannerHome}/bin/sonar-scanner"
790 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: other build tools sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
792 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: ref spec 1`] = `"+refs/heads/*:refs/remotes/@{remote}/*"`;
794 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: sonar-project.properties code 1`] = `"sonar.projectKey=my-project"`;
796 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: windows dotnet core jenkinsfile 1`] = `
801 stage('SonarQube Analysis') {
802 def scannerHome = tool 'SonarScanner for MSBuild'
804 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll begin /k:\\"my-project\\""
806 bat "dotnet \${scannerHome}\\\\SonarScanner.MSBuild.dll end"
813 exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: windows dotnet framework jenkinsfile 1`] = `
818 stage('SonarQube Analysis') {
819 def msbuildHome = tool 'Default MSBuild'
820 def scannerHome = tool 'SonarScanner for MSBuild'
822 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" begin /k:\\"my-project\\""
823 bat "\\"\${msbuildHome}\\\\MSBuild.exe\\" /t:Rebuild"
824 bat "\\"\${scannerHome}\\\\SonarScanner.MSBuild.exe\\" end"