Files
spring-boot-data-geode/spring-geode/spring-geode.gradle

43 lines
1.3 KiB
Groovy

plugins {
id "io.freefair.lombok" version "5.3.0"
}
apply plugin: 'io.spring.convention.spring-module'
apply from: MAVEN_POM_EDITOR_GRADLE
description = "Spring Boot for Apache Geode"
dependencies {
implementation project(':apache-geode-extensions')
implementation "org.springframework:spring-context-support"
implementation "org.springframework:spring-jcl"
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.springframework.data:spring-data-geode"
compileOnly "com.google.code.findbugs:jsr305:$findbugsVersion"
optional "org.springframework:spring-test"
runtimeOnly "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
testImplementation "junit:junit"
testImplementation "org.assertj:assertj-core"
testImplementation "org.mockito:mockito-core"
testImplementation "org.projectlombok:lombok"
testImplementation "org.testcontainers:testcontainers"
testImplementation "edu.umd.cs.mtc:multithreadedtc"
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.skyscreamer", module: "jsonassert"
}
testImplementation "org.springframework.boot:spring-boot-starter-data-jpa"
testImplementation "org.springframework.boot:spring-boot-starter-data-cassandra"
testImplementation "org.springframework.data:spring-data-geode-test"
testRuntime "org.hsqldb:hsqldb"
}