diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2019-05-09 09:33:29 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-06-03 20:21:22 +0200 |
commit | 77a4a2c15df8bfff0656b5fa84a64b5278c6c937 (patch) | |
tree | fda24aa1d3c22f2579632ea4e1c59360471c54f0 /sonar-shutdowner/build.gradle | |
parent | c8506cc161b5f71be32575e459d599ca320e2195 (diff) | |
download | sonarqube-77a4a2c15df8bfff0656b5fa84a64b5278c6c937.tar.gz sonarqube-77a4a2c15df8bfff0656b5fa84a64b5278c6c937.zip |
SONAR-12042 add force-stop option to Linux's sonar.sh
Diffstat (limited to 'sonar-shutdowner/build.gradle')
-rw-r--r-- | sonar-shutdowner/build.gradle | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sonar-shutdowner/build.gradle b/sonar-shutdowner/build.gradle new file mode 100644 index 00000000000..230ee861851 --- /dev/null +++ b/sonar-shutdowner/build.gradle @@ -0,0 +1,22 @@ +sonarqube { + properties { + property 'sonar.projectName', "${projectTitle} :: Shutdowner" + } +} + +dependencies { + // please keep list ordered + compileOnly 'com.google.code.findbugs:jsr305' + + testCompile 'junit:junit' + testCompile 'org.assertj:assertj-core' + testCompile 'org.mockito:mockito-core' +} + +jar { + manifest { + attributes( + 'Main-Class': 'org.sonar.application.Shutdowner' + ) + } +} |