We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff8b081 commit 3eac736Copy full SHA for 3eac736
Jenkinsfile
@@ -7,6 +7,18 @@ pipeline {
7
}
8
9
stages {
10
+
11
+ stage('SCM') {
12
+ checkout scm
13
+ }
14
15
+ stage('SonarQube Analysis') {
16
+ def scannerHome = tool 'SonarScanner';
17
+ withSonarQubeEnv() {
18
+ sh "${scannerHome}/bin/sonar-scanner"
19
20
21
22
stage('build') {
23
steps {
24
echo "build Pipeline"
sonar-project.properties
@@ -0,0 +1 @@
1
+sonar.projectKey=getting-started-app
0 commit comments