aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 0d4706d11185415afa2569e8ab9c6f7344197068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
buildscript {
	repositories {
		mavenCentral()
	}
	dependencies {
		classpath 'org.xtext:xtext-gradle-plugin:2.0.9-alpha.3'
	}
}

plugins {
	id 'com.github.johnrengelman.shadow' version '5.2.0' apply false
	id 'com.moowork.node' version '1.3.1' apply false
	id 'org.sonarqube' version '3.3'
}

allprojects {
	group = 'org.eclipse.viatra.solver'
	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'
}