Skip to content

Commit 9b69db9

Browse files
committed
bump version
1 parent ee31524 commit 9b69db9

File tree

58 files changed

+58
-58
lines changed
  • 01-spring-boot-overview
  • 02-spring-boot-spring-core
  • 03-spring-boot-hibernate-jpa-crud
    • 01-cruddemo-student-create
    • 02-cruddemo-student-read
    • 03-cruddemo-student-query-findAll
    • 04-cruddemo-student-query-findByLastName
    • 05-cruddemo-student-update
    • 06-cruddemo-student-delete-single-student
    • 07-cruddemo-student-query-delete-all-students
    • 08-cruddemo-create-db-tables-automatically
  • 04-spring-boot-rest-crud
    • 01-spring-boot-rest-crud-hello-world
    • 02-spring-boot-rest-crud-students-list-base
    • 03-spring-boot-rest-crud-students-list-refactored
    • 04-spring-boot-rest-crud-students-path-variable-get-single-student
    • 05-spring-boot-rest-crud-students-exception-handling
    • 06-spring-boot-rest-crud-students-global-exception-handling
    • 20-spring-boot-rest-crud-employee-list-employees
    • 21-spring-boot-rest-crud-employee-refactored-service-layer
    • 22-spring-boot-rest-crud-employee-dao-find-add-update-delete
    • 23-spring-boot-rest-crud-employee-service-find-add-update-delete
    • 24-spring-boot-rest-crud-employee-rest-controller-get-single-employee
    • 25-spring-boot-rest-crud-employee-rest-controller-add-employee
    • 26-spring-boot-rest-crud-employee-rest-controller-update-employee-and-delete-employee
    • 30-spring-boot-rest-crud-employee-with-spring-data-jpa
    • 40-spring-boot-rest-crud-employee-with-spring-data-rest
    • 50-spring-boot-rest-crud-employee-with-spring-data-rest-configs-and-sorting
  • 05-spring-boot-rest-security
    • 00-spring-boot-rest-security-employee-starter-code
    • 01-spring-boot-rest-security-default-security
    • 02-spring-boot-rest-security-basic
    • 04-spring-boot-rest-security-jdbc-plain-text
    • 05-spring-boot-rest-security-jdbc-bcrypt
    • 06-spring-boot-rest-security-jdbc-bcrypt-custom-table-names
  • 06-spring-boot-spring-mvc
    • 01-thymeleafdemo-helloworld
    • 02-thymeleafdemo-helloworld-css
  • 07-spring-boot-spring-mvc-crud
    • 00-thymeleaf-demo-employees-starter-list
    • 01-thymeleaf-demo-employees-list
    • 02-thymeleaf-demo-employees-add
    • 03-thymeleaf-demo-employees-update
    • 04-thymeleaf-demo-employees-delete
  • 08-spring-boot-spring-mvc-security
    • 08-spring-boot-spring-mvc-security-user-roles-restrict-access
    • 09-spring-boot-spring-mvc-security-custom-access-denied-page
    • 10-spring-boot-spring-mvc-security-display-content-based-on-user-roles
    • 11-spring-boot-spring-mvc-security-jdbc-plain-text
    • 12-spring-boot-spring-mvc-security-jdbc-bcrypt
    • 13-spring-boot-spring-mvc-security-jdbc-bcrypt-custom-tables

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+58
-58
lines changed

01-spring-boot-overview/01-spring-boot-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot.demo</groupId>

01-spring-boot-overview/02-dev-tools-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot.demo</groupId>

01-spring-boot-overview/03-actuator-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot.demo</groupId>

01-spring-boot-overview/04-actuator-security-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot.demo</groupId>

01-spring-boot-overview/05-command-line-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot.demo</groupId>

01-spring-boot-overview/06-properties-demo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot.demo</groupId>

02-spring-boot-spring-core/01-constructor-injection/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/02-component-scanning/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/03-setter-injection/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/04-qualifiers/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/05-primary/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/06-lazy-initialization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/07-bean-scopes/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/08-bean-lifecycle-methods/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

02-spring-boot-spring-core/09-java-config-bean/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/01-cruddemo-student-create/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/02-cruddemo-student-read/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/03-cruddemo-student-query-findAll/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/04-cruddemo-student-query-findByLastName/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/05-cruddemo-student-update/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/06-cruddemo-student-delete-single-student/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/07-cruddemo-student-query-delete-all-students/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

03-spring-boot-hibernate-jpa-crud/08-cruddemo-create-db-tables-automatically/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/01-spring-boot-rest-crud-hello-world/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/02-spring-boot-rest-crud-students-list-base/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/03-spring-boot-rest-crud-students-list-refactored/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/04-spring-boot-rest-crud-students-path-variable-get-single-student/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/05-spring-boot-rest-crud-students-exception-handling/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/06-spring-boot-rest-crud-students-global-exception-handling/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code</groupId>

04-spring-boot-rest-crud/20-spring-boot-rest-crud-employee-list-employees/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/21-spring-boot-rest-crud-employee-refactored-service-layer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/22-spring-boot-rest-crud-employee-dao-find-add-update-delete/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/23-spring-boot-rest-crud-employee-service-find-add-update-delete/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/24-spring-boot-rest-crud-employee-rest-controller-get-single-employee/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/25-spring-boot-rest-crud-employee-rest-controller-add-employee/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/26-spring-boot-rest-crud-employee-rest-controller-update-employee-and-delete-employee/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/30-spring-boot-rest-crud-employee-with-spring-data-jpa/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/40-spring-boot-rest-crud-employee-with-spring-data-rest/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

04-spring-boot-rest-crud/50-spring-boot-rest-crud-employee-with-spring-data-rest-configs-and-sorting/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

05-spring-boot-rest-security/00-spring-boot-rest-security-employee-starter-code/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

05-spring-boot-rest-security/01-spring-boot-rest-security-default-security/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

05-spring-boot-rest-security/02-spring-boot-rest-security-basic/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

05-spring-boot-rest-security/04-spring-boot-rest-security-jdbc-plain-text/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

05-spring-boot-rest-security/05-spring-boot-rest-security-jdbc-bcrypt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.4</version>
8+
<version>3.1.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>com.luv2code.springboot</groupId>

0 commit comments

Comments
 (0)