aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2019-05-09 09:33:29 +0200
committerSonarTech <sonartech@sonarsource.com>2019-06-03 20:21:22 +0200
commit77a4a2c15df8bfff0656b5fa84a64b5278c6c937 (patch)
treefda24aa1d3c22f2579632ea4e1c59360471c54f0 /sonar-application/build.gradle
parentc8506cc161b5f71be32575e459d599ca320e2195 (diff)
downloadsonarqube-77a4a2c15df8bfff0656b5fa84a64b5278c6c937.tar.gz
sonarqube-77a4a2c15df8bfff0656b5fa84a64b5278c6c937.zip
SONAR-12042 add force-stop option to Linux's sonar.sh
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle5
1 files changed, 5 insertions, 0 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 37c46692f57..2e876cd83a5 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -11,6 +11,7 @@ configurations {
jsw
scanner
web
+ shutdowner
jdbc_mssql {
transitive = false
}
@@ -48,6 +49,7 @@ dependencies {
scanner project(path: ':sonar-scanner-engine-shaded', configuration: 'shadow')
web project(':server:sonar-vsts')
web project(':server:sonar-web')
+ shutdowner project(':sonar-shutdowner')
jdbc_h2 'com.h2database:h2'
jdbc_mssql 'com.microsoft.sqlserver:mssql-jdbc'
@@ -194,6 +196,9 @@ task zip(type: Zip, dependsOn: [configurations.compile]) {
into("${archiveDir}/lib/jdbc/h2/") {
from configurations.jdbc_h2
}
+ into("${archiveDir}/lib/") {
+ from configurations.shutdowner
+ }
}
// Create the empty dir required by elasticsearch
zip.doFirst {