aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-27 14:22:40 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-06-27 14:22:40 +0200
commit07719e927f9d398765e661c84fd8778cefb39083 (patch)
tree9652080f7e580f09a0763a3e258348dea6e02684 /build.gradle
parentAdd enum support (diff)
downloadrefinery-07719e927f9d398765e661c84fd8778cefb39083.tar.gz
refinery-07719e927f9d398765e661c84fd8778cefb39083.tar.zst
refinery-07719e927f9d398765e661c84fd8778cefb39083.zip
Simplify project layout
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}