spring-boot upgrade from 1.3.2 to 1.3.3: logback issue

别来无恙 提交于 2019-12-04 23:54:22

Spring Boot is missing some dependency management for logback-core which is allowing different versions to creep in. I've opened an issue to address that.

In the meantime, you can avoid the problem by adding your own dependency management for it to your pom:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-core</artifactId>
            <version>${logback.version}</version>
        </dependency>
    </dependencies>
</dependencyManagement>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!