-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (26 loc) · 884 Bytes
/
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
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
implementation group: 'com.squareup', name: 'javawriter', version: '2.5.1'
implementation group: 'junit', name: 'junit', version: '4.12'
implementation group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
implementation group: 'fr.inria.gforge.spoon', name: 'spoon-core', version: '6.0.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.5'
implementation group: 'log4j', name: 'log4j', version: '1.2.17'
}
sourceSets {
main {
java {
srcDirs = ['./']
exclude 'Java/**'
}
}
test {
java {
srcDirs = ['./java_testcases/junit/crt_program']
}
}
}