aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 086e899ae0c2dd46576f0af41e704809e3f6fdaa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
plugins {
	id 'eclipse'
	id 'org.sonarqube'
}

allprojects {
	group = 'tools.refinery'
	version = '0.0.0-SNAPSHOT'

	sonarqube.properties {
		// Make sure `exclusions` is a List in every subproject
		property 'sonar.exclusions', []
	}
}

sonarqube.properties {
	property 'sonar.projectKey', 'graphs4value_refinery'
	property 'sonar.organization', 'graphs4value'
	property 'sonar.host.url', 'https://sonarcloud.io'
}