aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle34
1 files changed, 34 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 00000000..de4df91e
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,34 @@
1buildscript {
2 repositories {
3 mavenCentral()
4 }
5 dependencies {
6 classpath 'org.xtext:xtext-gradle-plugin:2.0.9-alpha.3'
7 }
8}
9
10subprojects {
11 ext.xtextVersion = '2.26.0.M1'
12 repositories {
13 mavenCentral()
14 }
15
16 apply plugin: 'java'
17 dependencies {
18 compile platform("org.eclipse.xtext:xtext-dev-bom:${xtextVersion}")
19 }
20
21 apply plugin: 'org.xtext.xtend'
22 apply from: "${rootDir}/gradle/source-layout.gradle"
23 apply plugin: 'eclipse'
24
25 group = 'org.eclipse.viatra.solver'
26 version = '1.0.0-SNAPSHOT'
27
28 sourceCompatibility = '11'
29 targetCompatibility = '11'
30
31 configurations.all {
32 exclude group: 'asm'
33 }
34}