13 lines
253 B
Groovy
13 lines
253 B
Groovy
plugins {
|
|
id 'com.gradle.enterprise' version '3.14.1'
|
|
id 'io.spring.ge.conventions' version '0.0.14'
|
|
}
|
|
|
|
rootProject.name = 'spring-integration'
|
|
|
|
rootDir.eachDir { dir ->
|
|
if (dir.name.startsWith('spring-integration-')) {
|
|
include ":${dir.name}"
|
|
}
|
|
}
|