Skip to content

Commit 947fbbc

Browse files
committed
Add Spring Session starter
1 parent b843306 commit 947fbbc

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

spring-boot-starters/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
<!-- deprecated but still provided for compatibility with 1.3 -->
6161
<module>spring-boot-starter-redis</module>
6262
<module>spring-boot-starter-security</module>
63+
<module>spring-boot-starter-session</module>
6364
<module>spring-boot-starter-social-facebook</module>
6465
<module>spring-boot-starter-social-twitter</module>
6566
<module>spring-boot-starter-social-linkedin</module>
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.springframework.boot</groupId>
6+
<artifactId>spring-boot-starters</artifactId>
7+
<version>1.4.0.BUILD-SNAPSHOT</version>
8+
</parent>
9+
<artifactId>spring-boot-starter-session</artifactId>
10+
<name>Spring Boot Session Starter</name>
11+
<description>Starter for using Spring Session</description>
12+
<url>http://projects.spring.io/spring-boot/</url>
13+
<organization>
14+
<name>Pivotal Software, Inc.</name>
15+
<url>http://www.spring.io</url>
16+
</organization>
17+
<properties>
18+
<main.basedir>${basedir}/../..</main.basedir>
19+
</properties>
20+
<dependencies>
21+
<dependency>
22+
<groupId>org.springframework.boot</groupId>
23+
<artifactId>spring-boot-starter</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.springframework.boot</groupId>
27+
<artifactId>spring-boot-starter-web</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.springframework.session</groupId>
31+
<artifactId>spring-session</artifactId>
32+
</dependency>
33+
</dependencies>
34+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
provides: spring-session

0 commit comments

Comments
 (0)