-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (26 loc) · 748 Bytes
/
build.gradle
File metadata and controls
30 lines (26 loc) · 748 Bytes
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
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'jacoco'
// We might want checkstyle, but not super early as its a barrier to getting started
apply plugin: 'checkstyle'
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
// See issue #11. This is here when we need it
compile fileTree(dir: 'lib', include: ['*.jar'])
// Use JUnit test framework
testCompile 'junit:junit:4.12'
}
jacocoTestReport {
reports {
xml.enabled true
}
}
javadoc {
options.author = true
options.version = true
}