How to override Spring Boot dependencies default version?

前端 未结 2 998
春和景丽
春和景丽 2021-02-20 10:11

How to change Spring Boot dependencies default versions? For example Spring Boot 1.4 uses Thymeleaf 2.1 version but recent version of Thymeleaf is 3.0. So how to change version

相关标签:
2条回答
  • The documentation describes how to do this.

    Judging by the tags on the question, you're using Maven. You should add a property to your application's pom.xml to set the Thymeleaf version:

    <properties>
        <thymeleaf.version>3.0.1.RELEASE</thymeleaf.version>
    </properties>
    

    There's also a sample application that shows how to use Thymeleaf 3.0 with Spring Boot 1.4 that may be of interest.

    0 讨论(0)
  • 2021-02-20 10:57

    The answer provided by Andy only works when your POM inherits from spring-boot-dependencies. When spring-boot-dependencies is added through dependencyManagement, you have to redefine all the artifacts that you want to override. Bummer!

    This is also stated in the document referenced by Andy (it might have been added later).

    0 讨论(0)
提交回复
热议问题