aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: fa9bef8dcf9d42b01fdf855b0f4ac5663a74b4f3 (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
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 {
	property "sonar.projectKey", "graphs4value_refainery"
	property "sonar.organization", "graphs4value"
	property "sonar.host.url", "https://sonarcloud.io"
}