File tree 11 files changed +200
-0
lines changed
spring-boot-starter-session-gemfire
src/main/resources/META-INF
spring-boot-starter-session-hazelcast
src/main/resources/META-INF
spring-boot-starter-session-jdbc
src/main/resources/META-INF
spring-boot-starter-session-mongo
src/main/resources/META-INF
spring-boot-starter-session-redis
src/main/resources/META-INF
11 files changed +200
-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-gemfire</module >
64
+ <module >spring-boot-starter-session-hazelcast</module >
65
+ <module >spring-boot-starter-session-jdbc</module >
66
+ <module >spring-boot-starter-session-mongo</module >
67
+ <module >spring-boot-starter-session-redis</module >
63
68
<module >spring-boot-starter-social-facebook</module >
64
69
<module >spring-boot-starter-social-twitter</module >
65
70
<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-gemfire</artifactId >
10
+ <name >Spring Boot Session Starter Gemfire</name >
11
+ <description >Starter for using Spring Session Gemfire</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.boot</groupId >
31
+ <artifactId >spring-boot-starter-data-gemfire</artifactId >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >org.springframework.session</groupId >
35
+ <artifactId >spring-session-data-gemfire</artifactId >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: spring-session-data-gemfire
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-hazelcast</artifactId >
10
+ <name >Spring Boot Session Starter Hazelcast</name >
11
+ <description >Starter for using Spring Session Hazelcast</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
+ <dependency >
34
+ <groupId >com.hazelcast</groupId >
35
+ <artifactId >hazelcast-spring</artifactId >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: spring-session,hazelcast-spring
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-jdbc</artifactId >
10
+ <name >Spring Boot Session Starter JDBC</name >
11
+ <description >Starter for using Spring Session JDBC</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.boot</groupId >
31
+ <artifactId >spring-boot-starter-jdbc</artifactId >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >org.springframework.session</groupId >
35
+ <artifactId >spring-session-jdbc</artifactId >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: spring-session-jdbc
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-mongo</artifactId >
10
+ <name >Spring Boot Session Starter Mongo</name >
11
+ <description >Starter for using Spring Session Mongo</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.boot</groupId >
31
+ <artifactId >spring-boot-starter-data-mongodb</artifactId >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >org.springframework.session</groupId >
35
+ <artifactId >spring-session-data-mongo</artifactId >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: spring-session-data-mongo
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-redis</artifactId >
10
+ <name >Spring Boot Session Starter Redis</name >
11
+ <description >Starter for using Spring Session Redis</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.boot</groupId >
31
+ <artifactId >spring-boot-starter-data-redis</artifactId >
32
+ </dependency >
33
+ <dependency >
34
+ <groupId >org.springframework.session</groupId >
35
+ <artifactId >spring-session-data-redis</artifactId >
36
+ </dependency >
37
+ </dependencies >
38
+ </project >
Original file line number Diff line number Diff line change
1
+ provides: spring-session-data-redis
You can’t perform that action at this time.
0 commit comments