19 lines
470 B
Groovy
19 lines
470 B
Groovy
rootProject.name = 'spring-statemachine'
|
|
|
|
include 'spring-statemachine-core'
|
|
|
|
include 'spring-statemachine-samples'
|
|
include 'spring-statemachine-samples:turnstile'
|
|
include 'spring-statemachine-samples:showcase'
|
|
include 'spring-statemachine-samples:cdplayer'
|
|
|
|
rootProject.children.find {
|
|
if (it.name == 'spring-statemachine-samples') {
|
|
it.name = 'spring-statemachine-samples-common'
|
|
it.children.each {
|
|
it.name = 'spring-statemachine-samples-' + it.name
|
|
}
|
|
}
|
|
}
|
|
|