18 lines
609 B
Groovy
18 lines
609 B
Groovy
plugins {
|
|
id 'org.springframework.shell.module'
|
|
}
|
|
|
|
description = 'Spring Shell Table'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-shell-management"))
|
|
api('org.springframework:spring-core')
|
|
api('org.springframework:spring-context')
|
|
testImplementation('org.springframework.boot:spring-boot-test')
|
|
testImplementation('org.junit.jupiter:junit-jupiter-engine')
|
|
testImplementation('org.junit.jupiter:junit-jupiter-params')
|
|
testImplementation('org.junit.platform:junit-platform-launcher')
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
|
testImplementation('org.assertj:assertj-core')
|
|
}
|