fix: 排除 slf4j-simple 避免与 Spring Boot logback 冲突

main
SLMS Development Team 4 months ago
parent ab7a389b0d
commit b1e6d0b972

@ -22,7 +22,9 @@ repositories {
}
dependencies {
implementation project(':core')
implementation(project(':core')) {
exclude group: 'org.slf4j', module: 'slf4j-simple' // logback
}
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'

Loading…
Cancel
Save