27 lines
747 B
Groovy
27 lines
747 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."
|
|
|
|
/*
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/milestone' }
|
|
maven { url 'https://repo.spring.io/snapshot' }
|
|
}
|
|
*/
|
|
|
|
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")
|
|
|
|
}
|