16 lines
356 B
Groovy
16 lines
356 B
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
description = "Spring Boot Starter for Apache Geode"
|
|
|
|
dependencies {
|
|
|
|
compile("org.springframework.boot:spring-boot-starter") {
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
|
|
}
|
|
|
|
compile(project(':spring-geode'))
|
|
|
|
compile(project(':spring-geode-autoconfigure'))
|
|
|
|
}
|