2016-10-03 14:25:26 +02:00
|
|
|
dependencies {
|
2017-08-14 23:00:13 +02:00
|
|
|
compile "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
2018-02-06 23:31:56 +01:00
|
|
|
testCompile("junit:junit:${project.property('junit.version')}") {
|
2016-10-03 14:25:26 +02:00
|
|
|
exclude group: 'org.hamcrest'
|
|
|
|
}
|
2018-02-06 23:31:56 +01:00
|
|
|
testCompile("org.mockito:mockito-core:${project.property('mockito.version')}") {
|
2016-10-03 14:25:26 +02:00
|
|
|
exclude group: 'org.hamcrest'
|
|
|
|
}
|
2018-02-06 23:31:56 +01:00
|
|
|
testCompile "org.hamcrest:hamcrest-all:${project.property('hamcrest.version')}"
|
2017-08-14 23:00:13 +02:00
|
|
|
}
|