This commit updates the samples to use Java's standard CLI utilities instead of Spring Shell. Resolves #1184
16 lines
353 B
Groovy
16 lines
353 B
Groovy
plugins {
|
|
id 'org.springframework.statemachine.sample'
|
|
}
|
|
|
|
description = 'Spring State Machine Samples Common'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
implementation project(':spring-statemachine-core')
|
|
implementation 'org.springframework.boot:spring-boot-starter'
|
|
}
|
|
|
|
tasks.named("bootJar") {
|
|
enabled = false
|
|
}
|