File tree 3 files changed +36
-0
lines changed
spring-boot-starter-session
src/main/resources/META-INF
3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 60
60
<!-- deprecated but still provided for compatibility with 1.3 -->
61
61
<module >spring-boot-starter-redis</module >
62
62
<module >spring-boot-starter-security</module >
63
+ <module >spring-boot-starter-session</module >
63
64
<module >spring-boot-starter-social-facebook</module >
64
65
<module >spring-boot-starter-social-twitter</module >
65
66
<module >spring-boot-starter-social-linkedin</module >
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
1
+ provides: spring-session
You can’t perform that action at this time.
0 commit comments