Files
spring-boot-data-geode/geode-spring-boot-starter/geode-spring-boot-starter.gradle
John Blum 1ab40b4078 Add geode-spring-boot-starter module.
Resolves #gh-6.
2018-05-30 22:18:22 -07:00

27 lines
586 B
Groovy

import org.springframework.boot.gradle.plugin.SpringBootPlugin
apply plugin: 'io.spring.convention.spring-module'
apply plugin: 'io.spring.dependency-management'
apply from: IDE_GRADLE
description = "Spring Boot Starter for Apache Geode"
dependencyManagement {
imports {
mavenBom SpringBootPlugin.BOM_COORDINATES
}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
compile(project(':geode-spring-boot'))
compile(project(':geode-spring-boot-autoconfigure'))
}