13 lines
317 B
Groovy
13 lines
317 B
Groovy
plugins {
|
|
id "java"
|
|
}
|
|
|
|
description = "Spring Boot Batch smoke test"
|
|
|
|
dependencies {
|
|
implementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-batch"))
|
|
|
|
runtimeOnly("org.hsqldb:hsqldb")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
} |