These extensions will be used for testing and documentation purposes. For example, this module contains extensions to Apache Geode's o.a.g.security.SecurityManager and o.a.g.security.AuthInitialize interfaces used in the SBDG samples.
19 lines
568 B
Groovy
19 lines
568 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Apache Geode Extensions"
|
|
|
|
dependencies {
|
|
|
|
compile "org.apache.geode:geode-core:$apacheGeodeVersion"
|
|
compile "org.apache.geode:geode-cq:$apacheGeodeVersion"
|
|
compile "org.apache.geode:geode-lucene:$apacheGeodeVersion"
|
|
compile "org.apache.geode:geode-wan:$apacheGeodeVersion"
|
|
|
|
testCompile "org.assertj:assertj-core"
|
|
testCompile "junit:junit"
|
|
testCompile "org.mockito:mockito-core"
|
|
testCompile "org.projectlombok:lombok"
|
|
testCompile "edu.umd.cs.mtc:multithreadedtc"
|
|
|
|
}
|