* Fix `org.testcontainers` pattern for Dependabot * Downgrade to `com.gradle.enterprise:3.15` * Fix deprecation warning in the `KafkaDslKotlinTests.kt`
13 lines
251 B
Groovy
13 lines
251 B
Groovy
plugins {
|
|
id 'com.gradle.enterprise' version '3.15'
|
|
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}"
|
|
}
|
|
}
|