Files
spring-boot-data-geode/spring-geode-tests/smoke-tests/multi-store/spring-geode-smoke-tests-multi-store.gradle
2020-06-10 23:48:29 -07:00

25 lines
741 B
Groovy

plugins {
id "io.freefair.lombok" version "5.1.0"
}
apply plugin: 'io.spring.convention.spring-test'
description = "Smoke Tests to assert that a multi-store Spring Data project using JPA for database access and Apache Geode for caching works as expected."
dependencies {
implementation project(':spring-geode-starter')
implementation "org.assertj:assertj-core"
implementation "org.projectlombok:lombok"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
implementation "org.springframework.boot:spring-boot-starter-data-mongodb"
runtime "org.hsqldb:hsqldb"
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}