Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit cecb803

Browse files
committed
Upgrade to 2.1
Start development of Spring Session MongoDB 2.1. Migrate to: Reactor Californium Spring Framework 5.1 Spring Security 5.1 Spring Session 2.1 Spring Data Lovelace
1 parent a2bfa4d commit cecb803

File tree

2 files changed

+13
-51
lines changed

2 files changed

+13
-51
lines changed

deploy.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash -x
22

3-
if [ "${CIRCLE_BRANCH}" == "master" ]; then
3+
if [ "${CIRCLE_BRANCH}" == "master" ] || [ "${CIRCLE_BRANCH}" == "2.0.x" ]; then
44
mvn -Pdistribute,snapshot,docs clean deploy
55
else
66
echo "We only deploy 'master' branch"

pom.xml

Lines changed: 12 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.springframework.session</groupId>
66
<artifactId>spring-session-data-mongodb</artifactId>
7-
<version>2.0.4.BUILD-SNAPSHOT</version>
7+
<version>2.1.0.BUILD-SNAPSHOT</version>
88

99
<name>Spring Session MongoDB</name>
1010
<url>http://spring.io/projects/spring-session-data-mongodb</url>
@@ -75,62 +75,24 @@
7575
<jackson.version>2.9.1</jackson.version>
7676
<junit.version>4.12</junit.version>
7777
<mockito.version>2.18.3</mockito.version>
78-
<mongo.version>3.5.0</mongo.version>
79-
<mongo-reactivestreams.version>1.6.0</mongo-reactivestreams.version>
80-
<reactor.version>Bismuth-SR10</reactor.version>
81-
<spring.version>5.0.8.RELEASE</spring.version>
82-
<spring-data.version>Kay-SR9</spring-data.version>
83-
<spring-security.version>5.0.7.RELEASE</spring-security.version>
84-
<spring-session.version>2.0.4.RELEASE</spring-session.version>
78+
<mongo.version>3.8.0</mongo.version>
79+
<mongo-reactivestreams.version>1.9.0</mongo-reactivestreams.version>
80+
<reactor.version>Californium-M1</reactor.version>
81+
<spring.version>5.1.0.RC1</spring.version>
82+
<spring-data.version>Lovelace-RC1</spring-data.version>
83+
<spring-security.version>5.1.0.M2</spring-security.version>
84+
<spring-session.version>2.1.0.BUILD-SNAPSHOT</spring-session.version>
8585
</properties>
8686

8787
<profiles>
8888

8989
<profile>
90-
<id>spring5-next</id>
90+
<id>spring-next</id>
9191
<properties>
92-
<reactor.version>Bismuth-BUILD-SNAPSHOT</reactor.version>
93-
<spring.version>5.0.9.BUILD-SNAPSHOT</spring.version>
94-
<spring-data.version>Kay-BUILD-SNAPSHOT</spring-data.version>
95-
<spring-security.version>5.0.8.BUILD-SNAPSHOT</spring-security.version>
96-
<spring-session.version>2.0.5.BUILD-SNAPSHOT</spring-session.version>
97-
</properties>
98-
<repositories>
99-
<repository>
100-
<id>spring-libs-snapshot</id>
101-
<url>http://repo.spring.io/libs-snapshot</url>
102-
</repository>
103-
</repositories>
104-
</profile>
105-
106-
<profile>
107-
<id>spring51-next</id>
108-
<properties>
109-
<reactor.version>Californium-M1</reactor.version>
110-
<mongo.version>3.8.0</mongo.version>
111-
<mongo-reactivestreams.version>1.9.0</mongo-reactivestreams.version>
112-
<spring.version>5.1.0.RC1</spring.version>
113-
<spring-data.version>Lovelace-RC1</spring-data.version>
114-
<spring-security.version>5.1.0.M2</spring-security.version>
115-
<spring-session.version>2.1.0.BUILD-SNAPSHOT</spring-session.version>
116-
</properties>
117-
<repositories>
118-
<repository>
119-
<id>spring-libs-snapshot</id>
120-
<url>http://repo.spring.io/libs-snapshot</url>
121-
</repository>
122-
</repositories>
123-
</profile>
124-
125-
<profile>
126-
<id>springdata-next</id>
127-
<properties>
128-
<reactor.version>Californium-M1</reactor.version>
129-
<mongo.version>3.8.0</mongo.version>
130-
<mongo-reactivestreams.version>1.9.0</mongo-reactivestreams.version>
131-
<spring.version>5.1.0.RC1</spring.version>
92+
<reactor.version>Californium-BUILD-SNAPSHOT</reactor.version>
93+
<spring.version>5.1.0.BUILD-SNAPSHOT</spring.version>
13294
<spring-data.version>Lovelace-BUILD-SNAPSHOT</spring-data.version>
133-
<spring-security.version>5.1.0.M2</spring-security.version>
95+
<spring-security.version>5.1.0.BUILD-SNAPSHOT</spring-security.version>
13496
<spring-session.version>2.1.0.BUILD-SNAPSHOT</spring-session.version>
13597
</properties>
13698
<repositories>

0 commit comments

Comments
 (0)