-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lubos Kosco
authored and
Lubos Kosco
committed
Mar 5, 2014
1 parent
f536c9a
commit b6463b5
Showing
2 changed files
with
50 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Required metadata | ||
sonar.projectKey=OpenGrok | ||
sonar.projectName=OpenGrok analyzed with the SonarQube Runner | ||
sonar.projectVersion=1.0 | ||
|
||
# Comma-separated paths to directories with sources (required) | ||
sonar.sources=src | ||
#,generatedsrc | ||
sonar.binaries=build,dist | ||
|
||
sonar.libraries=dist/*.jar,dist/lib/*.jar | ||
|
||
# Language | ||
sonar.language=java | ||
|
||
#pmd | ||
sonar.java.source=1.7 | ||
|
||
#findbugs | ||
sonar.findbugs.excludesFilters=tools/findbugs_filter.xml | ||
|
||
#code coverage | ||
sonar.dynamicAnalysis=reuseReports | ||
sonar.junit.reportsPath=build/test/results/ | ||
sonar.java.coveragePlugin=emma | ||
sonar.emma.reportPath=coverage/ | ||
|
||
# Encoding of the source files | ||
sonar.sourceEncoding=UTF-8 |