diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-08-21 17:14:25 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-08-27 20:21:57 +0200 |
commit | 96836ee48e2dc69220c139ef351ee376396ca47e (patch) | |
tree | 144f3a93d4c3450920a1768577690e0d47855449 /build.gradle | |
parent | 560aa9070df514c432f2189618d04daaade858dd (diff) | |
download | sonarqube-96836ee48e2dc69220c139ef351ee376396ca47e.tar.gz sonarqube-96836ee48e2dc69220c139ef351ee376396ca47e.zip |
Use inclusion list of file suffixes for license check
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 9ee3e02e0ce..7ddc1f035b9 100644 --- a/build.gradle +++ b/build.gradle @@ -319,9 +319,8 @@ subprojects { ts = 'SLASHSTAR_STYLE' tsx = 'SLASHSTAR_STYLE' css = 'SLASHSTAR_STYLE' - less = 'SLASHSTAR_STYLE' } - excludes(['**/*.txt', '**/*.properties', '**/*.xml', '**/*.xsd', '**/*.html', '**/*.json', '**/*.sql', '**/*.rb', '**/*.vm', '**/*.snap', '**/*.svg', '**/*.jar', '**/*.zip', '**/*.log', '**/*.cnf', '**/*.jks', '**/README', '**/*.pdf']) + includes(['**/*.java', '**/*.js', '**/*.ts', '**/*.tsx', '**/*.css']) } publishing { |