File tree 4 files changed +1
-23
lines changed
spring-boot-autoconfigure
src/main/java/org/springframework/boot/autoconfigure/thymeleaf
spring-boot-starters/spring-boot-starter-thymeleaf
4 files changed +1
-23
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,6 @@ dependencies {
204
204
}
205
205
optional(" org.thymeleaf:thymeleaf" )
206
206
optional(" org.thymeleaf:thymeleaf-spring6" )
207
- optional(" org.thymeleaf.extras:thymeleaf-extras-java8time" )
208
207
optional(" org.thymeleaf.extras:thymeleaf-extras-springsecurity6" )
209
208
optional(" redis.clients:jedis" )
210
209
Original file line number Diff line number Diff line change 23
23
import nz .net .ultraq .thymeleaf .layoutdialect .LayoutDialect ;
24
24
import org .apache .commons .logging .Log ;
25
25
import org .apache .commons .logging .LogFactory ;
26
- import org .thymeleaf .extras .java8time .dialect .Java8TimeDialect ;
27
26
import org .thymeleaf .extras .springsecurity6 .dialect .SpringSecurityDialect ;
28
27
import org .thymeleaf .spring6 .ISpringWebFluxTemplateEngine ;
29
28
import org .thymeleaf .spring6 .SpringTemplateEngine ;
@@ -252,16 +251,4 @@ SpringSecurityDialect securityDialect() {
252
251
253
252
}
254
253
255
- @ Configuration (proxyBeanMethods = false )
256
- @ ConditionalOnClass (Java8TimeDialect .class )
257
- static class ThymeleafJava8TimeDialect {
258
-
259
- @ Bean
260
- @ ConditionalOnMissingBean
261
- Java8TimeDialect java8TimeDialect () {
262
- return new Java8TimeDialect ();
263
- }
264
-
265
- }
266
-
267
254
}
Original file line number Diff line number Diff line change @@ -1531,7 +1531,7 @@ bom {
1531
1531
]
1532
1532
}
1533
1533
}
1534
- library(" Thymeleaf" , " 3.1.0.M2 " ) {
1534
+ library(" Thymeleaf" , " 3.1.0.M3 " ) {
1535
1535
group(" org.thymeleaf" ) {
1536
1536
modules = [
1537
1537
" thymeleaf" ,
@@ -1546,13 +1546,6 @@ bom {
1546
1546
]
1547
1547
}
1548
1548
}
1549
- library(" Thymeleaf Extras Java8Time" , " 3.0.4.RELEASE" ) {
1550
- group(" org.thymeleaf.extras" ) {
1551
- modules = [
1552
- " thymeleaf-extras-java8time"
1553
- ]
1554
- }
1555
- }
1556
1549
library(" Thymeleaf Extras SpringSecurity" , " 3.1.0.M1" ) {
1557
1550
group(" org.thymeleaf.extras" ) {
1558
1551
modules = [
Original file line number Diff line number Diff line change @@ -7,5 +7,4 @@ description = "Starter for building MVC web applications using Thymeleaf views"
7
7
dependencies {
8
8
api(project(" :spring-boot-project:spring-boot-starters:spring-boot-starter" ))
9
9
api(" org.thymeleaf:thymeleaf-spring6" )
10
- api(" org.thymeleaf.extras:thymeleaf-extras-java8time" )
11
10
}
You can’t perform that action at this time.
0 commit comments