25 lines
741 B
Groovy
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'
|
|
}
|
|
|
|
}
|