diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-06-13 17:27:05 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-06-13 17:27:05 +0530 |
| commit | fa880db84ec4507010a4d29b7cb0308f82553834 (patch) | |
| tree | b68bc07e241384d2d045bb3f585c9cb3b82b691c /spring-boot/07-thymeleaf-common-theme/pom.xml | |
| parent | 5ce49a5f1aa9455ebf59c3cbd856043508ca7902 (diff) | |
Added sample project 07-thymeleaf-common-theme
Diffstat (limited to 'spring-boot/07-thymeleaf-common-theme/pom.xml')
| -rw-r--r-- | spring-boot/07-thymeleaf-common-theme/pom.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/spring-boot/07-thymeleaf-common-theme/pom.xml b/spring-boot/07-thymeleaf-common-theme/pom.xml new file mode 100644 index 0000000..2f9f531 --- /dev/null +++ b/spring-boot/07-thymeleaf-common-theme/pom.xml @@ -0,0 +1,36 @@ +<?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> + + <!--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 |
