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

39 lines
1.3 KiB
XML
Raw Permalink 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 https://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>
2016-09-21 04:20:06 +08:00
<version>1.3.9.BUILD-SNAPSHOT</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>Spring Boot Thymeleaf Starter</description>
<url>https://projects.spring.io/spring-boot/</url>
2014-04-01 16:10:51 +08:00
<organization>
<name>Pivotal Software, Inc.</name>
<url>https://www.spring.io</url>
2014-04-01 16:10:51 +08:00
</organization>
2014-01-24 17:28:45 +08:00
<properties>
<main.basedir>${basedir}/../..</main.basedir>
</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.springframework.boot</groupId>
2014-01-24 17:28:45 +08:00
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2014-01-24 17:28:45 +08:00
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring4</artifactId>
</dependency>
<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>
</dependencies>
</project>