The plugin is managed transitively by the `io.spring.develocity.conventions` since version `0.0.21` **Auto-cherry-pick to `6.3.x` & `6.2.x`**
19 lines
297 B
Groovy
19 lines
297 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'io.spring.develocity.conventions' version '0.0.21'
|
|
}
|
|
|
|
rootProject.name = 'spring-integration'
|
|
|
|
rootDir.eachDir { dir ->
|
|
if (dir.name.startsWith('spring-integration-')) {
|
|
include ":${dir.name}"
|
|
}
|
|
}
|