New change

This commit is contained in:
shobikaramasubbarayalu 2022-02-17 21:05:17 -05:00
parent b8c40672fa
commit 47aaae2624
2 changed files with 12 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
node {
stage('SCM') {
checkout scm
}
stage('SonarQube Analysis') {
def scannerHome = tool 'SonarScanner';
withSonarQubeEnv() {
sh "${scannerHome}/bin/sonar-scanner"
}
}
}

1
sonar-project.properties Normal file
View File

@ -0,0 +1 @@
sonar.projectKey=VulnerableWebApp