* Upgrade to Gradle `8.12.1` * Upgrade to Spring Framework `7.0.0` * Upgrade to Spring Data `2025.1.0` * Upgrade to Kotlin `2.1.10` * Upgrade to RabbitMQ Client `5.24.0` * Upgrade to RabbitMQ Stream Client `0.22.0` * Other minor upgrades
18 lines
282 B
Groovy
18 lines
282 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'io.spring.develocity.conventions' version '0.0.22'
|
|
}
|
|
|
|
rootProject.name = 'spring-amqp-dist'
|
|
|
|
rootDir.eachDir { dir ->
|
|
if (dir.name.startsWith('spring-')) {
|
|
include ":${dir.name}"
|
|
}
|
|
} |