forked from lbeurerkellner/ttc2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
62 lines (38 loc) · 1.63 KB
/
build.gradle
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
plugins {
id 'java'
id 'org.fulib.fulibGradle' version '0.4.0'
}
group = 'uks.dp'
version = '0.1.0'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url = 'http://www.jabylon.org/maven/' }
}
dependencies {
// https://mvnrepository.com/artifact/org.fulib/fulibScenarios
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.3.0'
compile group: 'log4j', name: 'log4j', version: '1.2.16'
compile group: 'org.json', name: 'json', version: '20200518'
compile group: 'org.eclipse.emf', name: 'compare', version: '3.0.0'
compile group: 'org.eclipse.core', name: 'runtime', version: '3.10.0-v20140318-2214'
compile group: 'org.eclipse.emf', name: 'ecore', version: '2.9.1'
compile group: 'org.eclipse.emf.ecore', name: 'xmi', version: '2.9.1'
implementation 'com.sparkjava:spark-core:2.8.+'
// https://mvnrepository.com/artifact/org.fulib/fulibTools
testCompile group: 'org.fulib', name: 'fulibTools', version: '1.1.0'
// https://mvnrepository.com/artifact/org.fulib/fulibTables
testCompile group: 'org.fulib', name: 'fulibTables', version: '1.3.0'
// https://mvnrepository.com/artifact/org.fulib/fulibMockups
testCompile group: 'org.fulib', name: 'fulibMockups', version: '0.2.0'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8'
// https://mvnrepository.com/artifact/junit/junit
compile group: 'junit', name: 'junit', version: '4.13'
}
generateScenarioSource {
classDiagramSVG = true
}