Files
spring-shell/spring-shell-autoconfigure/spring-shell-autoconfigure.gradle
Janne Valkealahti 98b8eb356d Add spring-configuration-metadata
- Adding boot's annotation processor to spring-shell-autoconfigure
  and spring-shell-test-autoconfigure
- Backport #948
- Fixes #950
2023-12-15 09:50:49 +00:00

16 lines
551 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'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
}