Files
spring-boot-data-geode/spring-geode-tests/smoke-tests/spring-initializer/spring-geode-smoke-tests-initializer.gradle

19 lines
608 B
Groovy

apply plugin: 'io.spring.convention.spring-test'
description = "Smoke Tests to assert that a Spring for Apache Geode project generated from Spring Initializer is a standard, non-Webapp Spring Boot application."
dependencies {
implementation "org.assertj:assertj-core"
implementation project(':spring-geode-starter')
// implementation "org.springframework.geode:spring-geode-starter:$version"
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation project(":spring-geode-starter-test")
}