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