bael-4828: add new maven module:spring-security-web-boot-3

This commit is contained in:
hmdrzsharifi 2021-04-02 12:09:09 +04:30
parent 3a0e5ecf68
commit 49769beacf
2 changed files with 31 additions and 0 deletions

View File

@ -26,6 +26,7 @@
<module>spring-security-web-mvc</module>
<module>spring-security-web-boot-1</module>
<module>spring-security-web-boot-2</module>
<module>spring-security-web-boot-3</module>
<module>spring-security-web-mvc-custom</module>
<module>spring-security-web-digest-auth</module>
<module>spring-security-ldap</module>

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-security-web-boot-3</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-security-web-boot-3</name>
<packaging>jar</packaging>
<description>Spring Security MVC Boot - 3</description>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-2</relativePath>
</parent>
<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>
</dependencies>
</project>