diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2019-05-29 12:48:02 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-05-30 20:21:10 +0200 |
commit | 1c430b3667afe03087e03ab796d1613c41ec0483 (patch) | |
tree | c3b608665ffaf0842d66a7aff9e2bc1e4f2c291d /server/sonar-web/build.gradle | |
parent | ead51403583810237737b2de8ff1c0a7e8cd7513 (diff) | |
download | sonarqube-1c430b3667afe03087e03ab796d1613c41ec0483.tar.gz sonarqube-1c430b3667afe03087e03ab796d1613c41ec0483.zip |
Fix build task ":sonar-application:zip" and remove ":server:sonar-web:copyBranding"
Diffstat (limited to 'server/sonar-web/build.gradle')
-rw-r--r-- | server/sonar-web/build.gradle | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/server/sonar-web/build.gradle b/server/sonar-web/build.gradle index 7e99f19ef1d..1e43c8221a5 100644 --- a/server/sonar-web/build.gradle +++ b/server/sonar-web/build.gradle @@ -14,18 +14,7 @@ apply plugin: 'com.moowork.node' def webappDir = "${buildDir}/webapp" -task copyBranding(type: Copy) { - into projectDir - if (findProject(':private:branding')) { - from project(':private:branding').file('.') - includeEmptyDirs = false - } -} - yarn_run { - if (official) { dependsOn copyBranding } - - inputs.property('official', official) inputs.property('release', release) inputs.property('ci', ci) |