content/content-json/build.gradle

11 lines
441 B
Groovy
Raw Permalink Normal View History

2016-10-03 14:25:26 +02:00
dependencies {
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')}"
}