Add Spring Session BOM module

With Spring Session Data Geode module being removed from the BOM, all of Spring Session's modules are now managed by this repository.

This means that the BOM itself can be moved to this repository, in order to simplify the overall project maintenance.

See gh-2195
This commit is contained in:
Vedran Pavic
2022-10-25 18:41:44 +02:00
committed by Rob Winch
parent e5eeacec5f
commit f71d1d6ca4
5 changed files with 16 additions and 26 deletions

View File

@@ -0,0 +1,15 @@
import io.spring.gradle.convention.SpringModulePlugin
plugins {
id("io.spring.convention.bom")
}
dependencies {
constraints {
project.rootProject.allprojects { project ->
project.plugins.withType(SpringModulePlugin) {
api(project)
}
}
}
}