]> source.dussan.org Git - sonarqube.git/blob
db1fcec352e33a947d6242b45c7cf614a9d1bfcb
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <Fragment>
5   <li
6     className="abs-width-600"
7   >
8     <SentenceWithFilename
9       filename="build.gradle"
10       translationKey="onboarding.tutorial.with.jenkins.jenkinsfile.gradle.step2"
11     />
12     <CodeSnippet
13       snippet="plugins {
14   id \\"org.sonarqube\\" version \\"2.7\\"
15 }
16
17 sonarqube {
18   properties {
19     property \\"sonar.projectKey\\", \\"my-project\\"
20   }
21 }"
22     />
23   </li>
24   <CreateJenkinsfileBulletPoint
25     snippet="node {
26   stage('SCM') {
27     checkout scm
28   }
29   stage('SonarQube Analysis') {
30     withSonarQubeEnv() {
31       sh \\"./gradlew sonarqube\\"
32     }
33   }
34 }"
35   />
36 </Fragment>
37 `;