]> source.dussan.org Git - sonarqube.git/blob
74138a435b7fe6598727d853436293445dfccc00
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly and allow token generation: cfamily linux, copy additional properties 1`] = `"sonar.cfamily.build-wrapper-output=bw-output"`;
4
5 exports[`should render correctly and allow token generation: cfamily linux, copy build-wrapper command 1`] = `"./build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output <your build command here>"`;
6
7 exports[`should render correctly and allow token generation: cfamily linux, copy shell script 1`] = `
8 "curl 'http://localhost/static/cpp/build-wrapper-linux-x86.zip' --output build-wrapper.zip
9 unzip build-wrapper.zip"
10 `;
11
12 exports[`should render correctly and allow token generation: cfamily mac, copy additional properties 1`] = `"sonar.cfamily.build-wrapper-output=bw-output"`;
13
14 exports[`should render correctly and allow token generation: cfamily mac, copy build-wrapper command 1`] = `"./build-wrapper-macosx-x86/build-wrapper-macosx-x86 --out-dir bw-output <your build command here>"`;
15
16 exports[`should render correctly and allow token generation: cfamily mac, copy shell script 1`] = `
17 "curl 'http://localhost/static/cpp/build-wrapper-macosx-x86.zip' --output build-wrapper.zip
18 unzip build-wrapper.zip"
19 `;
20
21 exports[`should render correctly and allow token generation: cfamily win, copy additional properties 1`] = `"sonar.cfamily.build-wrapper-output=bw-output"`;
22
23 exports[`should render correctly and allow token generation: cfamily win, copy build-wrapper command 1`] = `"build-wrapper-win-x86/build-wrapper-win-x86-64.exe --out-dir bw-output <your build command here>"`;
24
25 exports[`should render correctly and allow token generation: cfamily win, copy shell script 1`] = `
26 "Invoke-WebRequest -Uri 'http://localhost/static/cpp/build-wrapper-win-x86.zip' -OutFile 'build-wrapper.zip'
27 Expand-Archive -Path 'build-wrapper.zip' -DestinationPath '.'"
28 `;
29
30 exports[`should render correctly and allow token generation: gradle, copy additional properties 1`] = `
31 "# Additional properties that will be passed to the scanner,
32 # Put one key=value per line, example:
33 # sonar.exclusions=**/*.bin
34 sonar.projectKey=foo
35 sonar.projectName=MyProject
36 "
37 `;
38
39 exports[`should render correctly and allow token generation: maven, copy additional properties 1`] = `
40 "# Additional properties that will be passed to the scanner,
41 # Put one key=value per line, example:
42 # sonar.exclusions=**/*.bin
43 sonar.projectKey=foo
44 sonar.projectName=MyProject
45 "
46 `;