The plugin is managed transitively by the `io.spring.develocity.conventions` since version `0.0.21`
(cherry picked from commit 725e66004c)
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}"
|
|
}
|
|
}
|