2018-01-12 08:08:28 -05: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">
|
2018-04-26 08:37:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-5-security</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-5-security</name>
|
2019-02-09 15:17:19 -05:00
|
|
|
<packaging>jar</packaging>
|
2018-04-26 08:37:47 -04:00
|
|
|
<description>spring 5 security sample project</description>
|
2018-01-12 08:08:28 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<parent>
|
2018-06-02 10:44:15 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
2018-12-03 16:13:43 -05:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
2018-06-02 10:44:15 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-12-03 16:13:43 -05:00
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2018-04-26 08:37:47 -04:00
|
|
|
</parent>
|
2018-01-12 08:08:28 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</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-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf.extras</groupId>
|
2018-12-03 16:13:43 -05:00
|
|
|
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
2018-04-26 08:37:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-03-30 13:56:40 -04:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>com.baeldung.passwordstorage.PasswordStorageApplication</mainClass>
|
|
|
|
<layout>JAR</layout>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-01-12 08:08:28 -05:00
|
|
|
|
2018-11-10 00:26:28 -05:00
|
|
|
</project>
|