diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-11-28 11:53:41 +0100 |
---|---|---|
committer | Daniel Schwarz <bartfastiel@users.noreply.github.com> | 2017-11-29 20:24:11 +0100 |
commit | 4f049dc73f2c20ac24998c4186a2c65ed33cac02 (patch) | |
tree | 6ecf56009318a0577089ba6330afe3eb3386fcbb /sonar-ws | |
parent | 6e1fe74d090fe8d2c1adb33cebb13122710639b7 (diff) | |
download | sonarqube-4f049dc73f2c20ac24998c4186a2c65ed33cac02.tar.gz sonarqube-4f049dc73f2c20ac24998c4186a2c65ed33cac02.zip |
Exclude generated files of sonar-ws from analysis
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/pom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-ws/pom.xml b/sonar-ws/pom.xml index f735cdaa422..6eb43cf3b31 100644 --- a/sonar-ws/pom.xml +++ b/sonar-ws/pom.xml @@ -13,8 +13,8 @@ <description>Protocol Buffers specification of Web Services</description> <properties> - <sonar.exclusions>target/generated-sources/**/*</sonar.exclusions> - <sonar.test.exclusions>target/generated-test-sources/**/*</sonar.test.exclusions> + <sonar.exclusions>target/generated-sources/**/*,src/main/java/org/sonarqube/ws/client/*/*.java</sonar.exclusions> + <sonar.test.exclusions>target/generated-test-sources/**/*,src/test/java/org/sonarqube/ws/client/*/*.java</sonar.test.exclusions> </properties> <dependencies> |