- Adding boot's annotation processor to spring-shell-autoconfigure and spring-shell-test-autoconfigure - Fixes #948
23 lines
879 B
Groovy
23 lines
879 B
Groovy
plugins {
|
|
id 'org.springframework.shell.module'
|
|
}
|
|
|
|
description = 'Spring Shell Test Autoconfigure'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-shell-management"))
|
|
implementation project(':spring-shell-core')
|
|
implementation project(':spring-shell-standard')
|
|
implementation project(':spring-shell-test')
|
|
implementation project(':spring-shell-autoconfigure')
|
|
implementation 'org.springframework:spring-test'
|
|
implementation 'org.springframework.boot:spring-boot-autoconfigure'
|
|
implementation 'org.springframework.boot:spring-boot-test-autoconfigure'
|
|
implementation 'org.springframework.boot:spring-boot-starter-test'
|
|
optional 'org.jline:jline'
|
|
optional 'org.assertj:assertj-core'
|
|
optional 'org.junit.jupiter:junit-jupiter-api'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
}
|