summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-11-19 12:11:14 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-11-19 12:11:14 +0100
commit28bf85135d822753bdb0935545f524d54bbc8c62 (patch)
tree8f36463beddad02a0069d5a137c4afc5dd8f0725 /build.gradle
parentbuild: bump gradle version to 7.3 (diff)
downloadrefinery-28bf85135d822753bdb0935545f524d54bbc8c62.tar.gz
refinery-28bf85135d822753bdb0935545f524d54bbc8c62.tar.zst
refinery-28bf85135d822753bdb0935545f524d54bbc8c62.zip
build: fix cross-project sonar configuration
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle13
1 files changed, 1 insertions, 12 deletions
diff --git a/build.gradle b/build.gradle
index 086e899a..329b1cdb 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,20 +1,9 @@
1plugins { 1plugins {
2 id 'eclipse' 2 id 'eclipse'
3 id 'org.sonarqube' 3 id 'refinery-sonarqube'
4} 4}
5 5
6allprojects { 6allprojects {
7 group = 'tools.refinery' 7 group = 'tools.refinery'
8 version = '0.0.0-SNAPSHOT' 8 version = '0.0.0-SNAPSHOT'
9
10 sonarqube.properties {
11 // Make sure `exclusions` is a List in every subproject
12 property 'sonar.exclusions', []
13 }
14}
15
16sonarqube.properties {
17 property 'sonar.projectKey', 'graphs4value_refinery'
18 property 'sonar.organization', 'graphs4value'
19 property 'sonar.host.url', 'https://sonarcloud.io'
20} 9}