aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-06-29 20:57:47 +0200
committerLibravatar Kristóf Marussy <marussy@mit.bme.hu>2021-06-29 20:57:47 +0200
commit1c57c0948bd31230065757756425f303ba76964a (patch)
tree3aa57248aa60b7dff9b84d0c8585ca71c64ff3fc /build.gradle
parentAdd hot module replacement for development (diff)
downloadrefinery-1c57c0948bd31230065757756425f303ba76964a.tar.gz
refinery-1c57c0948bd31230065757756425f303ba76964a.tar.zst
refinery-1c57c0948bd31230065757756425f303ba76964a.zip
Pin all m2 dependency versions
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 4 insertions, 7 deletions
diff --git a/build.gradle b/build.gradle
index 521ad7ff..e1d31ecc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,13 +13,10 @@ plugins {
13} 13}
14 14
15subprojects { 15subprojects {
16 ext.xtextVersion = '2.26.0.M1'
17 ext.hamcrestVersion = '2.2'
18
19 repositories { 16 repositories {
20 mavenCentral() 17 mavenCentral()
21 } 18 }
22 19
23 apply plugin: 'java' 20 apply plugin: 'java'
24 dependencies { 21 dependencies {
25 compile platform("org.eclipse.xtext:xtext-dev-bom:${xtextVersion}") 22 compile platform("org.eclipse.xtext:xtext-dev-bom:${xtextVersion}")
@@ -31,14 +28,14 @@ subprojects {
31 28
32 group = 'org.eclipse.viatra.solver' 29 group = 'org.eclipse.viatra.solver'
33 version = '1.0.0-SNAPSHOT' 30 version = '1.0.0-SNAPSHOT'
34 31
35 sourceCompatibility = '11' 32 sourceCompatibility = '11'
36 targetCompatibility = '11' 33 targetCompatibility = '11'
37 34
38 configurations.all { 35 configurations.all {
39 exclude group: 'asm' 36 exclude group: 'asm'
40 } 37 }
41 38
42 eclipse.classpath.file.whenMerged { 39 eclipse.classpath.file.whenMerged {
43 for (entry in entries) { 40 for (entry in entries) {
44 if (entry.path.endsWith('xtext-gen')) { 41 if (entry.path.endsWith('xtext-gen')) {