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"
|
|
|
|
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>
|
2016-11-23 18:07:28 -05:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2017-02-10 03:13:14 -05:00
|
|
|
<version>1.4.4.RELEASE</version>
|
2017-05-12 14:32:54 -04:00
|
|
|
<relativePath />
|
2016-11-29 09:54:58 -05:00
|
|
|
<!-- lookup parent from repository -->
|
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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-11-29 09:54:58 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
2017-04-28 03:34:39 -04:00
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
2016-11-29 09:54:58 -05:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-11-23 18:07:28 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-11-05 11:57:39 -04:00
|
|
|
</project>
|