|
4 | 4 |
|
5 | 5 | <groupId>org.springframework.session</groupId>
|
6 | 6 | <artifactId>spring-session-data-mongodb</artifactId>
|
7 |
| - <version>2.1.3.BUILD-SNAPSHOT</version> |
| 7 | + <version>2.2.0.BUILD-SNAPSHOT</version> |
8 | 8 |
|
9 | 9 | <name>Spring Session MongoDB</name>
|
10 | 10 | <url>https://spring.io/projects/spring-session-data-mongodb</url>
|
11 | 11 | <description>
|
12 | 12 | Persist session data in MongoDB
|
13 | 13 | </description>
|
14 | 14 |
|
15 |
| - <inceptionYear>2014-2018</inceptionYear> |
| 15 | + <inceptionYear>2014-2019</inceptionYear> |
16 | 16 |
|
17 | 17 | <organization>
|
18 | 18 | <name>Pivotal, Inc.</name>
|
|
47 | 47 | <name>Apache License, Version 2.0</name>
|
48 | 48 | <url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
49 | 49 | <comments>
|
50 |
| - Copyright 2011-2018 the original author or authors. |
| 50 | + Copyright 2011-2019 the original author or authors. |
51 | 51 |
|
52 | 52 | Licensed under the Apache License, Version 2.0 (the "License");
|
53 | 53 | you may not use this file except in compliance with the License.
|
|
69 | 69 | <source.level>1.8</source.level>
|
70 | 70 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
71 | 71 |
|
72 |
| - <assertj.version>3.9.1</assertj.version> |
73 |
| - <flapdoodle.version>1.50.5</flapdoodle.version> |
| 72 | + <assertj.version>3.12.2</assertj.version> |
| 73 | + <flapdoodle.version>2.2.0</flapdoodle.version> |
74 | 74 | <hamcrest.version>1.3</hamcrest.version>
|
75 |
| - <jackson.version>2.9.1</jackson.version> |
| 75 | + <jackson.version>2.9.8</jackson.version> |
76 | 76 | <jsr305.version>3.0.2</jsr305.version>
|
77 | 77 | <junit.version>4.12</junit.version>
|
78 |
| - <lombok.version>1.18.0</lombok.version> |
79 |
| - <mockito.version>2.18.3</mockito.version> |
80 |
| - <mongo.version>3.8.0</mongo.version> |
81 |
| - <mongo-reactivestreams.version>1.9.0</mongo-reactivestreams.version> |
| 78 | + <lombok.version>1.18.6</lombok.version> |
| 79 | + <mockito.version>2.25.1</mockito.version> |
| 80 | + <mongo.version>3.10.1</mongo.version> |
| 81 | + <mongo-reactivestreams.version>1.11.0</mongo-reactivestreams.version> |
82 | 82 | <reactor.version>Californium-SR5</reactor.version>
|
83 |
| - <spring.version>5.1.5.RELEASE</spring.version> |
84 |
| - <spring-data.version>Lovelace-SR5</spring-data.version> |
| 83 | + <spring.version>5.2.0.BUILD-SNAPSHOT</spring.version> |
| 84 | + <spring-data.version>Moore-M2</spring-data.version> |
85 | 85 | <spring-security.version>5.1.4.RELEASE</spring-security.version>
|
86 |
| - <spring-session.version>2.1.2.RELEASE</spring-session.version> |
| 86 | + <spring-session.version>2.2.0.BUILD-SNAPSHOT</spring-session.version> |
87 | 87 | </properties>
|
88 | 88 |
|
89 | 89 | <profiles>
|
|
92 | 92 | <id>spring-next</id>
|
93 | 93 | <properties>
|
94 | 94 | <reactor.version>Californium-BUILD-SNAPSHOT</reactor.version>
|
95 |
| - <spring.version>5.1.6.BUILD-SNAPSHOT</spring.version> |
96 |
| - <spring-data.version>Lovelace-BUILD-SNAPSHOT</spring-data.version> |
| 95 | + <spring-data.version>Moore-BUILD-SNAPSHOT</spring-data.version> |
97 | 96 | <spring-security.version>5.1.5.BUILD-SNAPSHOT</spring-security.version>
|
98 |
| - <spring-session.version>2.1.3.BUILD-SNAPSHOT</spring-session.version> |
99 | 97 | </properties>
|
100 | 98 | <repositories>
|
101 | 99 | <repository>
|
|
175 | 173 | </plugins>
|
176 | 174 | </build>
|
177 | 175 | </profile>
|
178 |
| - |
179 |
| - <profile> |
180 |
| - <id>gpg</id> |
181 |
| - |
182 |
| - <properties> |
183 |
| - <gpg.useagent>true</gpg.useagent> |
184 |
| - </properties> |
185 |
| - |
186 |
| - <build> |
187 |
| - <plugins> |
188 |
| - <plugin> |
189 |
| - <groupId>org.apache.maven.plugins</groupId> |
190 |
| - <artifactId>maven-gpg-plugin</artifactId> |
191 |
| - <version>1.6</version> |
192 |
| - <executions> |
193 |
| - <execution> |
194 |
| - <id>sign-artifact</id> |
195 |
| - <phase>verify</phase> |
196 |
| - <goals> |
197 |
| - <goal>sign</goal> |
198 |
| - </goals> |
199 |
| - </execution> |
200 |
| - </executions> |
201 |
| - </plugin> |
202 |
| - </plugins> |
203 |
| - </build> |
204 |
| - </profile> |
205 |
| - |
206 |
| - <profile> |
207 |
| - <id>milestone</id> |
208 |
| - |
209 |
| - <build> |
210 |
| - <plugins> |
211 |
| - <plugin> |
212 |
| - <groupId>org.jfrog.buildinfo</groupId> |
213 |
| - <artifactId>artifactory-maven-plugin</artifactId> |
214 |
| - <version>2.6.1</version> |
215 |
| - <inherited>false</inherited> |
216 |
| - <executions> |
217 |
| - <execution> |
218 |
| - <id>build-info</id> |
219 |
| - <goals> |
220 |
| - <goal>publish</goal> |
221 |
| - </goals> |
222 |
| - <configuration> |
223 |
| - <deployProperties> |
224 |
| - <archives>*:*:*:*@zip zip.name:spring-session-data-mongodb, zip.displayname:Spring Session MongoDB, zip.deployed:false</archives> |
225 |
| - </deployProperties> |
226 |
| - <publisher> |
227 |
| - <contextUrl>https://repo.spring.io</contextUrl> |
228 |
| - <username>{{USERNAME}}</username> |
229 |
| - <password>{{PASSWORD}}</password> |
230 |
| - <repoKey>libs-milestone-local</repoKey> |
231 |
| - <snapshotRepoKey>libs-snapshot-local</snapshotRepoKey> |
232 |
| - </publisher> |
233 |
| - </configuration> |
234 |
| - </execution> |
235 |
| - </executions> |
236 |
| - </plugin> |
237 |
| - </plugins> |
238 |
| - </build> |
239 |
| - </profile> |
240 |
| - |
241 |
| - <profile> |
242 |
| - <id>release</id> |
243 |
| - |
244 |
| - <build> |
245 |
| - <plugins> |
246 |
| - <plugin> |
247 |
| - <groupId>org.jfrog.buildinfo</groupId> |
248 |
| - <artifactId>artifactory-maven-plugin</artifactId> |
249 |
| - <version>2.6.1</version> |
250 |
| - <inherited>false</inherited> |
251 |
| - <executions> |
252 |
| - <execution> |
253 |
| - <id>build-info</id> |
254 |
| - <goals> |
255 |
| - <goal>publish</goal> |
256 |
| - </goals> |
257 |
| - <configuration> |
258 |
| - <deployProperties> |
259 |
| - <archives>*:*:*:*@zip zip.name:spring-session-data-mongodb, zip.displayname:Spring Session MongoDB, zip.deployed:false</archives> |
260 |
| - </deployProperties> |
261 |
| - <publisher> |
262 |
| - <contextUrl>https://repo.spring.io</contextUrl> |
263 |
| - <username>{{USERNAME}}</username> |
264 |
| - <password>{{PASSWORD}}</password> |
265 |
| - <repoKey>libs-release-local</repoKey> |
266 |
| - <snapshotRepoKey>libs-snapshot-local</snapshotRepoKey> |
267 |
| - </publisher> |
268 |
| - </configuration> |
269 |
| - </execution> |
270 |
| - </executions> |
271 |
| - </plugin> |
272 |
| - </plugins> |
273 |
| - </build> |
274 |
| - </profile> |
275 |
| - |
276 |
| - <profile> |
277 |
| - <id>central</id> |
278 |
| - |
279 |
| - <build> |
280 |
| - <plugins> |
281 |
| - <plugin> |
282 |
| - <groupId>org.apache.maven.plugins</groupId> |
283 |
| - <artifactId>maven-deploy-plugin</artifactId> |
284 |
| - <version>2.8.2</version> |
285 |
| - <configuration> |
286 |
| - <skip>false</skip> |
287 |
| - </configuration> |
288 |
| - </plugin> |
289 |
| - </plugins> |
290 |
| - </build> |
291 |
| - |
292 |
| - <distributionManagement> |
293 |
| - <snapshotRepository> |
294 |
| - <id>sonatype-nexus-snapshots</id> |
295 |
| - <name>Sonatype Nexus Snapshots</name> |
296 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
297 |
| - </snapshotRepository> |
298 |
| - <repository> |
299 |
| - <id>sonatype-nexus-staging</id> |
300 |
| - <name>Nexus Release Repository</name> |
301 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
302 |
| - </repository> |
303 |
| - </distributionManagement> |
304 |
| - </profile> |
305 |
| - |
| 176 | + |
306 | 177 | <profile>
|
307 | 178 | <id>docs</id>
|
308 | 179 |
|
|
589 | 460 | <artifactId>mongodb-driver-reactivestreams</artifactId>
|
590 | 461 | <version>${mongo-reactivestreams.version}</version>
|
591 | 462 | <scope>test</scope>
|
| 463 | + <exclusions> |
| 464 | + <exclusion> |
| 465 | + <groupId>org.mongodb</groupId> |
| 466 | + <artifactId>mongodb-driver-async</artifactId> |
| 467 | + </exclusion> |
| 468 | + </exclusions> |
592 | 469 | </dependency>
|
593 | 470 |
|
594 | 471 | <dependency>
|
|
602 | 479 |
|
603 | 480 | <build>
|
604 | 481 |
|
605 |
| - <extensions> |
606 |
| - <extension> |
607 |
| - <groupId>org.apache.maven.wagon</groupId> |
608 |
| - <artifactId>wagon-ssh</artifactId> |
609 |
| - <version>2.5</version> |
610 |
| - </extension> |
611 |
| - </extensions> |
612 |
| - |
613 | 482 | <plugins>
|
614 | 483 | <plugin>
|
615 | 484 | <groupId>org.apache.maven.plugins</groupId>
|
|
0 commit comments