JAVA-71 spring-security-config
This commit is contained in:
parent
8af8f88787
commit
273b876127
|
@ -17,9 +17,8 @@
|
|||
<module>spring-security-acl</module>
|
||||
<module>spring-security-auth0</module>
|
||||
<module>spring-security-angular/server</module>
|
||||
<module>spring-security-cache-control</module>
|
||||
<module>spring-security-config</module>
|
||||
<module>spring-security-core</module>
|
||||
<module>spring-security-cors</module>
|
||||
<module>spring-security-mvc</module>
|
||||
<module>spring-security-mvc-boot-1</module>
|
||||
<module>spring-security-mvc-boot-2</module>
|
||||
|
|
|
@ -2,15 +2,15 @@
|
|||
<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-cache-control</artifactId>
|
||||
<artifactId>cache-control</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>spring-security-cache-control</name>
|
||||
<name>cache-control</name>
|
||||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-boot-2</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../parent-boot-2</relativePath>
|
||||
<relativePath>../../../parent-boot-2</relativePath>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
|
@ -2,8 +2,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-cors</artifactId>
|
||||
<name>spring-security-cors</name>
|
||||
<artifactId>cors</artifactId>
|
||||
<name>cors</name>
|
||||
<packaging>jar</packaging>
|
||||
<description>Spring Security CORS</description>
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?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-config</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<name>spring-security-conf</name>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-modules</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
<module>cache-control</module>
|
||||
<module>cors</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
Loading…
Reference in New Issue