- Add springShellSampleNative project property - Implement generic samples build logic in buildSrc - Fixes #873
14 lines
447 B
Groovy
14 lines
447 B
Groovy
plugins {
|
|
id 'org.springframework.shell.sample'
|
|
}
|
|
|
|
description = 'Spring Shell Sample Catalog'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-shell-management"))
|
|
implementation project(':spring-shell-starters:spring-shell-starter-jna')
|
|
testImplementation project(':spring-shell-starters:spring-shell-starter-test')
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
}
|