2019-12-16 11:35:04 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-05-17 10:53:25 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-12-16 11:35:04 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-mvc-basics-4</artifactId>
|
|
|
|
<name>spring-mvc-basics-4</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2023-12-22 13:09:09 -05:00
|
|
|
<artifactId>parent-boot-3</artifactId>
|
2019-12-16 11:35:04 -05:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-12-22 13:09:09 -05:00
|
|
|
<relativePath>../../parent-boot-3</relativePath>
|
2019-12-16 11:35:04 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-02-20 13:15:47 -05:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2019-12-16 11:35:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-02-20 13:15:47 -05:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2019-12-16 11:35:04 -05:00
|
|
|
</dependency>
|
2021-12-17 08:53:10 -05:00
|
|
|
<dependency>
|
2023-02-20 13:15:47 -05:00
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
2021-12-17 08:53:10 -05:00
|
|
|
</dependency>
|
2019-12-16 11:35:04 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
2023-02-20 13:15:47 -05:00
|
|
|
<artifactId>jstl</artifactId>
|
2024-01-30 16:56:21 -05:00
|
|
|
<version>${jstl.version}</version>
|
2019-12-16 11:35:04 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-02-20 13:15:47 -05:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
2019-12-16 11:35:04 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2024-01-30 16:56:21 -05:00
|
|
|
<properties>
|
|
|
|
<jstl.version>1.2</jstl.version>
|
|
|
|
</properties>
|
|
|
|
|
2019-12-16 11:35:04 -05:00
|
|
|
</project>
|