19 lines
549 B
Groovy
19 lines
549 B
Groovy
rootProject.name = 'spring-session-build'
|
|
|
|
include 'spring-session-core'
|
|
include 'spring-session-data-redis'
|
|
include 'spring-session-docs'
|
|
include 'spring-session-hazelcast'
|
|
include 'spring-session-jdbc'
|
|
include 'hazelcast4'
|
|
project(':hazelcast4').projectDir = file('spring-session-hazelcast/hazelcast4')
|
|
|
|
file('spring-session-samples').eachDirMatch(~/spring-session-sample-.*/) { dir ->
|
|
include dir.name
|
|
project(":$dir.name").projectDir = dir
|
|
}
|
|
|
|
rootProject.children.each { project ->
|
|
project.buildFileName = "${project.name}.gradle"
|
|
}
|