2016-11-05 11:57:39 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-11-05 11:57:39 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-11-23 18:07:28 -05:00
|
|
|
<artifactId>spring-session</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2016-11-27 18:02:24 -05:00
|
|
|
<packaging>jar</packaging>
|
2016-11-06 16:28:05 -05:00
|
|
|
|
2016-11-05 11:57:39 -04:00
|
|
|
<parent>
|
2018-06-08 14:04:03 -04:00
|
|
|
<artifactId>parent-boot-1</artifactId>
|
2017-05-14 12:01:35 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-08 14:04:03 -04:00
|
|
|
<relativePath>../parent-boot-1</relativePath>
|
2016-11-05 11:57:39 -04:00
|
|
|
</parent>
|
|
|
|
|
2016-11-23 18:07:28 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
<artifactId>spring-session</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2018-07-08 07:27:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.kstyrc</groupId>
|
|
|
|
<artifactId>embedded-redis</artifactId>
|
|
|
|
<version>${embedded-redis.version}</version>
|
|
|
|
</dependency>
|
2016-11-23 18:07:28 -05:00
|
|
|
</dependencies>
|
2018-07-08 07:27:45 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<embedded-redis.version>0.6</embedded-redis.version>
|
|
|
|
</properties>
|
2016-11-23 18:07:28 -05:00
|
|
|
|
2016-11-05 11:57:39 -04:00
|
|
|
</project>
|