|
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
16 | 16 | <start-class>org.mvnsearch.ThymeLeafDemoApplication</start-class>
|
17 | 17 | <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> |
20 | 21 | </properties>
|
21 | 22 |
|
22 | 23 | <dependencies>
|
|
29 | 30 | <artifactId>spring-boot-starter-web</artifactId>
|
30 | 31 | </dependency>
|
31 | 32 | <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> |
34 | 51 | </dependency>
|
35 | 52 | <dependency>
|
36 | 53 | <groupId>nz.net.ultraq.thymeleaf</groupId>
|
37 | 54 | <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> |
38 | 60 | </dependency>
|
39 | 61 | <dependency>
|
40 | 62 | <groupId>org.springframework.boot</groupId>
|
|
44 | 66 | <groupId>io.dropwizard.metrics</groupId>
|
45 | 67 | <artifactId>metrics-core</artifactId>
|
46 | 68 | </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> |
51 | 77 | <dependency>
|
52 | 78 | <groupId>org.springframework.boot</groupId>
|
53 | 79 | <artifactId>spring-boot-starter-test</artifactId>
|
|
74 | 100 | <dependency>
|
75 | 101 | <groupId>io.spring.platform</groupId>
|
76 | 102 | <artifactId>platform-bom</artifactId>
|
77 |
| - <version>2.0.5.RELEASE</version> |
| 103 | + <version>2.0.6.RELEASE</version> |
78 | 104 | <type>pom</type>
|
79 | 105 | <scope>import</scope>
|
80 | 106 | </dependency>
|
|
0 commit comments