13 lines
261 B
Groovy
13 lines
261 B
Groovy
plugins {
|
|
id 'com.gradle.develocity' version '3.17.5'
|
|
id 'io.spring.develocity.conventions' version '0.0.19'
|
|
}
|
|
|
|
rootProject.name = 'spring-integration'
|
|
|
|
rootDir.eachDir { dir ->
|
|
if (dir.name.startsWith('spring-integration-')) {
|
|
include ":${dir.name}"
|
|
}
|
|
}
|