-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (48 loc) · 1.07 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
allprojects {
apply plugin: "idea"
apply plugin: "eclipse"
apply plugin: "java"
apply plugin: 'jacoco'
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = "io.molr"
repositories {
mavenCentral()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.16'
}
jacoco {
toolVersion = '0.8.4'
}
jacocoTestReport {
reports {
html.enabled = false
xml.enabled = true
xml.destination file("$buildDir/reports/jacoco/report.xml")
csv.enabled = false
}
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
project(":mole") {
dependencies {
compile project(":commons")
}
}
project(":gui") {
dependencies {
compile project(":inspector")
}
}
project(":inspector") {
dependencies {
compile project(":mole")
compile project(":jdiscript")
}
}
project(":jdiscript") {
}
task wrapper(type: Wrapper) { gradleVersion = '4.10.3' }