Files
spring-boot-data-geode/spring-geode-tests/smoke-tests/function-execution-on-region/spring-geode-smoke-tests-function-execution-on-region.gradle
2020-12-09 12:56:04 -08:00

22 lines
642 B
Groovy

plugins {
id "io.freefair.lombok" version "5.3.0"
}
apply plugin: 'io.spring.convention.spring-test'
description = "Smoke Tests asserting the proper execution of an Apache Geode Function using Spring Data for Apache Geode Function annotation support in a Spring Boot context."
dependencies {
implementation project(':spring-geode-starter')
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
testImplementation project(':spring-geode-starter-test')
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}