Skip to content

Commit 75f972b

Browse files
committed
upgrade to thymeleaf 3
1 parent c0f4f25 commit 75f972b

File tree

1 file changed

+35
-9
lines changed

1 file changed

+35
-9
lines changed

pom.xml

Lines changed: 35 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1616
<start-class>org.mvnsearch.ThymeLeafDemoApplication</start-class>
1717
<java.version>1.8</java.version>
18-
<spring.version>4.3.0.RC2</spring.version>
19-
<spring-boot.version>1.4.0.M3</spring-boot.version>
18+
<spring.version>4.3.1.RELEASE</spring.version>
19+
<spring-boot.version>1.4.0.BUILD-SNAPSHOT</spring-boot.version>
20+
<thymeleaf.version>3.0.0.RELEASE</thymeleaf.version>
2021
</properties>
2122

2223
<dependencies>
@@ -29,12 +30,33 @@
2930
<artifactId>spring-boot-starter-web</artifactId>
3031
</dependency>
3132
<dependency>
32-
<groupId>org.springframework.boot</groupId>
33-
<artifactId>spring-boot-starter-thymeleaf</artifactId>
33+
<groupId>org.thymeleaf</groupId>
34+
<artifactId>thymeleaf-spring4</artifactId>
35+
<version>${thymeleaf.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.thymeleaf</groupId>
39+
<artifactId>thymeleaf</artifactId>
40+
<version>${thymeleaf.version}</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.github.mxab.thymeleaf.extras</groupId>
44+
<artifactId>thymeleaf-extras-data-attribute</artifactId>
45+
<version>2.0.1</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.thymeleaf.extras</groupId>
49+
<artifactId>thymeleaf-extras-java8time</artifactId>
50+
<version>${thymeleaf.version}</version>
3451
</dependency>
3552
<dependency>
3653
<groupId>nz.net.ultraq.thymeleaf</groupId>
3754
<artifactId>thymeleaf-layout-dialect</artifactId>
55+
<version>2.0.0</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.springframework.boot</groupId>
59+
<artifactId>spring-boot-starter-thymeleaf</artifactId>
3860
</dependency>
3961
<dependency>
4062
<groupId>org.springframework.boot</groupId>
@@ -44,10 +66,14 @@
4466
<groupId>io.dropwizard.metrics</groupId>
4567
<artifactId>metrics-core</artifactId>
4668
</dependency>
47-
<dependency>
48-
<groupId>org.springframework.boot</groupId>
49-
<artifactId>spring-boot-starter-data-redis</artifactId>
50-
</dependency>
69+
<dependency>
70+
<groupId>org.springframework.boot</groupId>
71+
<artifactId>spring-boot-starter-data-redis</artifactId>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.springframework.boot</groupId>
75+
<artifactId>spring-boot-devtools</artifactId>
76+
</dependency>
5177
<dependency>
5278
<groupId>org.springframework.boot</groupId>
5379
<artifactId>spring-boot-starter-test</artifactId>
@@ -74,7 +100,7 @@
74100
<dependency>
75101
<groupId>io.spring.platform</groupId>
76102
<artifactId>platform-bom</artifactId>
77-
<version>2.0.5.RELEASE</version>
103+
<version>2.0.6.RELEASE</version>
78104
<type>pom</type>
79105
<scope>import</scope>
80106
</dependency>

0 commit comments

Comments
 (0)