forked from YSU-CSIS-SE/tdd-java-example-junit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (23 loc) · 867 Bytes
/
build.gradle
File metadata and controls
30 lines (23 loc) · 867 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 plugin: 'java'
apply plugin: 'jacoco'
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
// Dependencies your project is based on and won't work without any of them
compile group: 'org.jongo', name: 'jongo', version: '1.1'
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '2.+'
// Dependencies just for testing and won't be added to your project
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.assertj', name: 'assertj-core', version: '2.0.0'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.+'
testCompile group: 'org.easymock', name: 'easymock', version: '3.3.1'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}