Files
spring-boot-data-geode/spring-geode-project/apache-geode-extensions/apache-geode-extensions.gradle
John Blum 7607415b36 Remove apache-geode-micrometer2 module.
The integration module between Apache Geode 1.14.x (based on Micrometer 1.x) and Micrometer 2.0 is not longer needed since the Micrometer team is rolling back changes to the Micrometer Binders API in 2.0 to re-include the Binders back in micrometer-core.
2022-04-12 15:52:14 -07:00

20 lines
719 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Apache Geode Extensions"
dependencies {
api "org.apache.geode:geode-core:$apacheGeodeVersion"
api "org.apache.geode:geode-cq:$apacheGeodeVersion"
api "org.apache.geode:geode-lucene:$apacheGeodeVersion"
api "org.apache.geode:geode-wan:$apacheGeodeVersion"
implementation "com.fasterxml.jackson.core:jackson-databind"
// See additional testImplementation dependencies declared in the testDependencies project extension
// defined in the DependencySetPlugin.
testImplementation "org.apache.geode:geode-membership:$apacheGeodeVersion"
testImplementation "org.apache.geode:geode-serialization:$apacheGeodeVersion"
}