Skip to content

Commit

Permalink
fix #48 #47: Remove paragraph & Update version
Browse files Browse the repository at this point in the history
- docs: Remove paragraph about WebSecurityConfigurerAdapter
- version: Update Spring Boot to the latest version (3.1.0 -> 3.1.4)
  • Loading branch information
zhangwt-cn authored and Buzzardo committed Oct 12, 2023
1 parent 491b1d8 commit 9329ded
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,6 @@ include::complete/src/main/java/com/example/authenticatingldap/WebSecurityConfig
----
====

To customize the security settings you use a `WebSecurityConfigurer`. In the above example this is
done by overriding the methods of `WebSecurityConfigurerAdapter` which implements the `WebSecurityConfigurer` interface.

You also need an LDAP server. Spring Boot provides auto-configuration for an embedded
server written in pure Java, which is being used for this guide. The
Expand Down
2 changes: 1 addition & 1 deletion complete/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.1.0'
id 'org.springframework.boot' version '3.1.4'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
Expand Down
2 changes: 1 addition & 1 deletion complete/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.0</version>
<version>3.1.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand Down
2 changes: 1 addition & 1 deletion initial/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '3.1.0'
id 'org.springframework.boot' version '3.1.4'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
Expand Down
2 changes: 1 addition & 1 deletion initial/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.0</version>
<version>3.1.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
Expand Down

0 comments on commit 9329ded

Please sign in to comment.