Files
spring-shell/spring-shell-autoconfigure/spring-shell-autoconfigure.gradle
Janne Valkealahti 39c4519a3f Add gradle build files
- First set of changes for introduction of a gradle build.
- Relates #470
2022-08-16 10:30:15 +01:00

15 lines
467 B
Groovy

plugins {
id 'org.springframework.shell.module'
}
description = 'Spring Shell Autoconfigure'
dependencies {
management platform(project(":spring-shell-management"))
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation project(':spring-shell-core')
implementation project(':spring-shell-standard')
implementation project(':spring-shell-standard-commands')
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}