Add apache-geode-extensions module containing classes implementing Apache Geode interfaces and SPIs.

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.
This commit is contained in:
John Blum
2019-04-22 15:23:53 -07:00
parent 74c4edfb2d
commit 57a1ea4840
5 changed files with 394 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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"
}