10 lines
340 B
Groovy
10 lines
340 B
Groovy
dependencies {
|
|
compile "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
|
testCompile('junit:junit:4.12') {
|
|
exclude group: 'org.hamcrest'
|
|
}
|
|
testCompile('org.mockito:mockito-core:1.9.5') {
|
|
exclude group: 'org.hamcrest'
|
|
}
|
|
testCompile 'org.hamcrest:hamcrest-all:1.3'
|
|
}
|