Created
February 14, 2019 16:31
-
-
Save ryanvgates/f03821cf71922bdbf9be84266d9d5704 to your computer and use it in GitHub Desktop.
Run SonarQube in Jenkins on Angular Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# unique project identifier (required) | |
sonar.projectKey=my:project-key | |
# project metadata (used to be required, optional since SonarQube 6.1) | |
sonar.projectName=my:project-name | |
sonar.projectVersion=1.0 | |
# path to source directories (required) | |
sonar.sources=src | |
# path to test source directories (optional) | |
# sonar.tests=testDir1,testDir2 | |
# path to Java project compiled classes (optional) | |
#sonar.java.binaries=bin | |
# comma-separated list of paths to libraries (optional) | |
#sonar.java.libraries=path/to/library.jar,path/to/classes/dir | |
# Additional parameters | |
#sonar.my.property=value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment