35 lines
1.1 KiB
Groovy
35 lines
1.1 KiB
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Apache Geode Extensions"
|
|
|
|
dependencies {
|
|
|
|
compile("org.apache.geode:geode-core:$apacheGeodeVersion") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
compile("org.apache.geode:geode-cq:$apacheGeodeVersion") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
compile("org.apache.geode:geode-lucene:$apacheGeodeVersion") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
compile("org.apache.geode:geode-wan:$apacheGeodeVersion") {
|
|
exclude group: "org.apache.logging.log4j", module: "log4j-core"
|
|
}
|
|
|
|
compile "com.fasterxml.jackson.core:jackson-databind"
|
|
|
|
testCompile "junit:junit"
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "org.projectlombok:lombok"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
|
|
testCompile "org.apache.geode:geode-membership:$apacheGeodeVersion"
|
|
testCompile "org.apache.geode:geode-serialization:$apacheGeodeVersion"
|
|
|
|
}
|