summaryrefslogtreecommitdiff
path: root/spring-boot/09-spring-security-db-authentication/pom.xml
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-06-13 21:03:31 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-06-13 21:03:31 +0530
commitf0001c5c8d8a33729b93d8d6e10d3af40bfabed6 (patch)
tree6042e5bfdd48671daa95baf29c5041e526f5b62e /spring-boot/09-spring-security-db-authentication/pom.xml
parent6ae21cd4e51756ea14b43b82a9d500bca9fb8032 (diff)
Added sample application 09-spring-security-db-authentication
Diffstat (limited to 'spring-boot/09-spring-security-db-authentication/pom.xml')
-rw-r--r--spring-boot/09-spring-security-db-authentication/pom.xml68
1 files changed, 68 insertions, 0 deletions
diff --git a/spring-boot/09-spring-security-db-authentication/pom.xml b/spring-boot/09-spring-security-db-authentication/pom.xml
new file mode 100644
index 0000000..96e4a92
--- /dev/null
+++ b/spring-boot/09-spring-security-db-authentication/pom.xml
@@ -0,0 +1,68 @@
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>com.example.spring.boot</groupId>
+ <artifactId>base-config</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <relativePath>../00-config</relativePath>
+ </parent>
+
+ <artifactId>thymeleaf-common-theme</artifactId>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-validation</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-security</artifactId>
+ </dependency>
+
+ <!-- Below is not always required when Spring Security is used.
+ But in layout/main.html, the logout link definition uses a capability in this
+ library (the sec:authorize attribyte)-->
+ <dependency>
+ <groupId>org.thymeleaf.extras</groupId>
+ <artifactId>thymeleaf-extras-springsecurity6</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>42.7.11</version>
+ </dependency>
+
+ <!-- Bouncy Castle Provider (Required by Spring's Argon2 implementation) -->
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk18on</artifactId>
+ <version>1.84</version> <!-- Use the latest stable version available -->
+ </dependency>
+
+ <!--This
+ is to automatically reload web pages during development -->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-devtools</artifactId>
+ <optional>true</optional>
+ </dependency>
+
+ </dependencies>
+
+</project> \ No newline at end of file