Skip to content

Commit f71d1d6

Browse files
vpavicrwinch
authored andcommitted
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
1 parent e5eeace commit f71d1d6

File tree

5 files changed

+16
-26
lines changed

5 files changed

+16
-26
lines changed

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ plugins {
1212

1313
rootProject.name = 'spring-session-build'
1414

15+
include 'spring-session-bom'
1516
include 'spring-session-core'
1617
include 'spring-session-data-mongodb'
1718
include 'spring-session-data-redis'
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import io.spring.gradle.convention.SpringModulePlugin
2+
3+
plugins {
4+
id("io.spring.convention.bom")
5+
}
6+
7+
dependencies {
8+
constraints {
9+
project.rootProject.allprojects { project ->
10+
project.plugins.withType(SpringModulePlugin) {
11+
api(project)
12+
}
13+
}
14+
}
15+
}

spring-session-docs/modules/ROOT/nav.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*** xref:guides/boot-webflux-custom-cookie.adoc[Custom Cookie]
1616
** Java Configuration
1717
** XML Configuration
18-
* xref:modules.adoc[Modules]
1918
* xref:http-session.adoc[HttpSession Integration]
2019
* xref:web-socket.adoc[WebSocket Integration]
2120
* xref:web-session.adoc[WebSession Integration]

spring-session-docs/modules/ROOT/pages/modules.adoc

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
11
= What's New
2-
3-
Check also the Spring Session BOM https://github.com/spring-projects/spring-session-bom/wiki#release-notes[release notes]
4-
for a list of new and noteworthy features, as well as upgrade instructions for each release.

0 commit comments

Comments
 (0)