-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #809 from I2PC/ms_sonar
Update sonar-project.properties
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
sonar.projectKey=Xmipp | ||
sonar.projectName=Xmipp | ||
sonar.projectVersion=3.0 | ||
sonar.projectKey=I2PC_xmipp | ||
sonar.organization=i2pc | ||
|
||
#sonar.log.level=DEBUG | ||
# This is the name and version displayed in the SonarCloud UI. | ||
sonar.projectVersion=3.0 | ||
|
||
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | ||
sonar.sources=./src/ | ||
# don't use .gitignore for auto exclusion, as it doesn't work properly and exclude almost everything | ||
|
||
# Don't use .gitignore for auto exclusion, as it doesn't work properly and exclude almost everything | ||
sonar.scm.exclusions.disabled=true | ||
|
||
# NOTE - be careful with excusion rules. If you include formerly excluded folder, all files that include | ||
# headers from it will be analyzed again! https://community.sonarsource.com/t/sonarscanner-cache-not-working-properly/29451 | ||
sonar.inclusions=**/xmipp/**, **/xmippViz/** | ||
sonar.exclusions=**/external/**, **/programs/**, **/tests/**, **/legacy/** | ||
|
||
# see https://docs.travis-ci.com/user/reference/overview/#virtualisation-environment-vs-operating-system | ||
|
||
sonar.java.binaries=./src/xmippViz/java/build/xmipp | ||
sonar.java.libraries=./src/xmippViz/java/lib/*.jar | ||
sonar.cfamily.build-wrapper-output=bw-outputs |