diff options
Diffstat (limited to 'server/sonar-web/build.gradle')
-rw-r--r-- | server/sonar-web/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/build.gradle b/server/sonar-web/build.gradle index f7be5a3d07e..8a266b18ccd 100644 --- a/server/sonar-web/build.gradle +++ b/server/sonar-web/build.gradle @@ -74,12 +74,12 @@ def sources = fileTree(dir: "src") + fileTree(dir: "scripts") + fileTree(dir: "c task licenseCheckWeb(type: com.hierynomus.gradle.license.tasks.LicenseCheck) { source = sources - if (release) exclude 'main/js/app/components/GlobalFooterBranding.js' + if (official) exclude 'main/js/app/components/GlobalFooterBranding.js' } licenseMain.dependsOn licenseCheckWeb task licenseFormatWeb(type: com.hierynomus.gradle.license.tasks.LicenseFormat) { source = sources - if (release) exclude 'main/js/app/components/GlobalFooterBranding.js' + if (official) exclude 'main/js/app/components/GlobalFooterBranding.js' } licenseFormat.dependsOn licenseFormatWeb |