aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-09-24 18:21:45 +0200
committerLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-09-24 18:21:45 +0200
commite83016134a713318c2b25ceb47bd79ec653e5313 (patch)
tree1510f6a0c55597b37a58bb8b27e61d5ede2d36d6 /build.gradle
parentdocs: add EPL-2.0 license (diff)
downloadrefinery-e83016134a713318c2b25ceb47bd79ec653e5313.tar.gz
refinery-e83016134a713318c2b25ceb47bd79ec653e5313.tar.zst
refinery-e83016134a713318c2b25ceb47bd79ec653e5313.zip
ci: add GH actions build and SonarScanner
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 9 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 1736d644..fa9bef8d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,10 +9,17 @@ buildscript {
9 9
10plugins { 10plugins {
11 id 'com.github.johnrengelman.shadow' version '5.2.0' apply false 11 id 'com.github.johnrengelman.shadow' version '5.2.0' apply false
12 id 'com.moowork.node' version "1.3.1" apply false 12 id 'com.moowork.node' version '1.3.1' apply false
13 id 'org.sonarqube' version '3.3'
13} 14}
14 15
15allprojects { 16allprojects {
16 group = 'org.eclipse.viatra.solver' 17 group = 'org.eclipse.viatra.solver'
17 version = '1.0.0-SNAPSHOT' 18 version = '0.0.0-SNAPSHOT'
19}
20
21sonarqube.properties {
22 property "sonar.projectKey", "graphs4value_refainery"
23 property "sonar.organization", "graphs4value"
24 property "sonar.host.url", "https://sonarcloud.io"
18} 25}