diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-04-11 12:33:36 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-04-12 20:20:48 +0200 |
commit | 74a8a758bc7e3a1ef6a1aed68b138c906a93759f (patch) | |
tree | c7e1e6d5e914f15eb1a82cbabf0406c70c8e6e13 /build.gradle | |
parent | fb450dde72800575ae531f7afabdafff4e6f5245 (diff) | |
download | sonarqube-74a8a758bc7e3a1ef6a1aed68b138c906a93759f.tar.gz sonarqube-74a8a758bc7e3a1ef6a1aed68b138c906a93759f.zip |
Fix build warning "unknown file extension: xxx.pdf"
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 14149787afc..95fb87f80b2 100644 --- a/build.gradle +++ b/build.gradle @@ -290,7 +290,7 @@ subprojects { css = 'SLASHSTAR_STYLE' less = 'SLASHSTAR_STYLE' } - excludes(['**/*.txt', '**/*.properties', '**/*.xml', '**/*.xsd', '**/*.html', '**/*.json', '**/*.sql', '**/*.rb', '**/*.vm', '**/*.snap', '**/*.svg', '**/*.jar', '**/*.zip', '**/*.log', '**/*.cnf', '**/*.jks', '**/README']) + excludes(['**/*.txt', '**/*.properties', '**/*.xml', '**/*.xsd', '**/*.html', '**/*.json', '**/*.sql', '**/*.rb', '**/*.vm', '**/*.snap', '**/*.svg', '**/*.jar', '**/*.zip', '**/*.log', '**/*.cnf', '**/*.jks', '**/README', '**/*.pdf']) } publishing { |