-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
106 lines (89 loc) · 2.65 KB
/
build.gradle
File metadata and controls
106 lines (89 loc) · 2.65 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
version '1.0-SNAPSHOT'
subprojects {
apply plugin: 'groovy'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile files("../resources/")
compile 'org.codehaus.groovy:groovy-all:2.3.11'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8'
compile group: 'com.intellij', name: 'annotations', version: '12.0'
compile group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
compile group: 'org.reflections', name: 'reflections', version: '0.9.11'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.0.1'
testCompile group: 'org.junit.platform', name: 'junit-platform-runner', version: '1.0.1'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.0.1'
testCompile group: 'org.jmock', name: 'jmock-junit4', version: '2+'
}
sourceSets {
main {
java {
srcDir 'java'
}
}
test {
java {
srcDir 'test'
}
}
}
}
project(':Daqan') {
dependencies {
compile project(':BasicUtils'), project(':Neutral')
}
}
project(':Latari') {
dependencies {
compile project(':BasicUtils'), project(':Neutral')
}
}
project(':Uthuk') {
dependencies {
compile project(':BasicUtils'), project(':Neutral')
}
}
project(':Waiqar') {
dependencies {
compile project(':BasicUtils'), project(':Neutral')
}
}
project(':GUI') {
dependencies {
compile project(':BasicUtils'), project(':BaseSimulator')
}
}
project(':Interactions') {
dependencies {
compile project(':BasicUtils'), project(':BaseSimulator'), project(':Neutral'), project(':Daqan'), project(':Latari'), project(':Uthuk'), project(':Waiqar')
}
}
project(':BasicUtils') {
dependencies {
compile project(':BasicUtils')
}
}
project(':BaseSimulator') {
dependencies {
compile project(':BasicUtils'), project(':Interactions'), project(':Daqan'), project(':Waiqar'), project(':Uthuk'), project(':Latari')
}
}
project(':Interactions') {
dependencies {
compile project(':BasicUtils')
}
}
project(':Neutral') {
dependencies {
compile project(':BasicUtils')
}
}
project(':TestBed') {
dependencies {
compile project(':BasicUtils'), project(':BaseSimulator'), project(':Interactions'), project(':Daqan'), project(':Waiqar'), project(':Uthuk'), project(':Latari')
}
}