content/content-json/build.gradle

11 lines
446 B
Groovy
Raw Normal View History

2016-10-03 14:25:26 +02:00
dependencies {
compile "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
testCompile("junit:junit:${project.property('junit4.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'
}
testCompile "org.hamcrest:hamcrest-library:${project.property('hamcrest.version')}"
}