diff --git a/build.gradle b/build.gradle index 45539dd..54fadcf 100644 --- a/build.gradle +++ b/build.gradle @@ -12,6 +12,9 @@ configurations { compileOnly { extendsFrom annotationProcessor } + all { + exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging' + } } repositories { @@ -27,7 +30,6 @@ dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' -// runtimeOnly 'com.h2database:h2' runtimeOnly 'org.mariadb.jdbc:mariadb-java-client' compileOnly 'org.projectlombok:lombok' @@ -36,6 +38,8 @@ dependencies { testCompileOnly 'org.projectlombok:lombok' testAnnotationProcessor 'org.projectlombok:lombok' + implementation 'org.springframework.boot:spring-boot-starter-log4j2' + testImplementation 'org.springframework.boot:spring-boot-starter-test' // testImplementation 'org.springframework.security:spring-security-test' }