spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml

31 lines
1.1 KiB
XML
Raw Normal View History

2014-01-24 17:28:45 +08:00
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2014-01-24 17:28:45 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starters</artifactId>
<version>${revision}</version>
2014-01-24 17:28:45 +08:00
</parent>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Thymeleaf Starter</name>
<description>Starter for building MVC web applications using Thymeleaf views</description>
2014-01-24 17:28:45 +08:00
<properties>
<main.basedir>${basedir}/../../..</main.basedir>
2014-01-24 17:28:45 +08:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2014-01-24 17:28:45 +08:00
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
2014-01-24 17:28:45 +08:00
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-java8time</artifactId>
</dependency>
2014-01-24 17:28:45 +08:00
</dependencies>
</project>