JAVA-2436: renamed module spring-security-web-persisted-remember-me to (#10874)

* JAVA-2436: renamed module spring-security-web-persisted-remember-me to
spring-security-web-persistence

* JAVA-2436: removed redundant dependencies

* JAVA-2436: removed redundant dependency

* JAVA-2436: Move/rename module spring-security-web-persisted-remember-me

* JAVA-2436: clean up
This commit is contained in:
freelansam 2021-06-15 00:17:32 +05:30 committed by GitHub
parent 3bf486a4dd
commit 10bb7e44ea
25 changed files with 9 additions and 9 deletions

View File

@ -37,7 +37,7 @@
<module>spring-security-web-login</module> <module>spring-security-web-login</module>
<module>spring-security-web-mvc-custom</module> <module>spring-security-web-mvc-custom</module>
<module>spring-security-web-mvc</module> <module>spring-security-web-mvc</module>
<module>spring-security-web-persisted-remember-me</module> <module>spring-security-web-persistent-login</module>
<module>spring-security-web-react</module> <module>spring-security-web-react</module>
<module>spring-security-web-rest-basic-auth</module> <module>spring-security-web-rest-basic-auth</module>
<module>spring-security-web-rest-custom</module> <module>spring-security-web-rest-custom</module>

View File

@ -1,6 +1,6 @@
## Spring Security Persisted Remember Me ## Spring Security Persistent Login
This module contains articles about 'remember me' with Spring Security This module contains articles about persistent login with Spring Security
### The Course ### The Course

View File

@ -3,16 +3,16 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<artifactId>spring-security-web-persisted-remember-me</artifactId> <artifactId>spring-security-web-persistent-login</artifactId>
<version>0.1-SNAPSHOT</version> <version>0.1-SNAPSHOT</version>
<name>spring-security-web-persisted-remember-me</name> <name>spring-security-web-persistent-login</name>
<packaging>war</packaging> <packaging>war</packaging>
<parent> <parent>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<artifactId>parent-spring-4</artifactId> <artifactId>parent-spring-5</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-spring-4</relativePath> <relativePath>../../parent-spring-5</relativePath>
</parent> </parent>
<dependencies> <dependencies>
@ -136,7 +136,7 @@
</dependencies> </dependencies>
<build> <build>
<finalName>spring-security-web-persisted-remember-me</finalName> <finalName>spring-security-web-persistence</finalName>
<resources> <resources>
<resource> <resource>
<directory>src/main/resources</directory> <directory>src/main/resources</directory>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd" > xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" >
</beans> </beans>