summaryrefslogtreecommitdiff
path: root/spring-boot/06-form-handling-with-thymeleaf/pom.xml
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-06-06 20:02:35 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-06-06 20:02:35 +0530
commit9b3396e2b5cb3660a94fb4a4c0dfb873b46ce224 (patch)
treeff25c9c4583cd52cd30257be092f99892829b46e /spring-boot/06-form-handling-with-thymeleaf/pom.xml
parent6657eb579ce0413689f2bfb0c2f912a930b3f179 (diff)
Added a Spring Boot + Thymeleaf based form validation sample application code
Diffstat (limited to 'spring-boot/06-form-handling-with-thymeleaf/pom.xml')
-rw-r--r--spring-boot/06-form-handling-with-thymeleaf/pom.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/spring-boot/06-form-handling-with-thymeleaf/pom.xml b/spring-boot/06-form-handling-with-thymeleaf/pom.xml
new file mode 100644
index 0000000..c486563
--- /dev/null
+++ b/spring-boot/06-form-handling-with-thymeleaf/pom.xml
@@ -0,0 +1,28 @@
+<?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>form-handling-with-thymeleaf</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>
+ </dependencies>
+
+</project> \ No newline at end of file