diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2016-01-28 16:57:26 +0100 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2016-01-28 16:58:15 +0100 |
commit | f0dd332463ae0fcab921ea97699c68a3913585c7 (patch) | |
tree | 3ca404b489e1dee3c0b785f86e1794b9398da71a /sonar-core/pom.xml | |
parent | e59b089103b2f765371e8193c6fec4259ae81ee2 (diff) | |
download | sonarqube-f0dd332463ae0fcab921ea97699c68a3913585c7.tar.gz sonarqube-f0dd332463ae0fcab921ea97699c68a3913585c7.zip |
Exclude files generated by protobuf from SQ analysis
This was already done for other modules, but not for sonar-core.
Diffstat (limited to 'sonar-core/pom.xml')
-rw-r--r-- | sonar-core/pom.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sonar-core/pom.xml b/sonar-core/pom.xml index 7738b4d2a93..ba067c60d00 100644 --- a/sonar-core/pom.xml +++ b/sonar-core/pom.xml @@ -13,6 +13,10 @@ <name>SonarQube :: Core</name> <description>Library shared by analyzer and server</description> + <properties> + <sonar.exclusions>target/generated-sources/**/*</sonar.exclusions> + </properties> + <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> |