Gradle 5 JUNit BOM 및 Spring Boot 잘못된 버전 그라들 5의 BOM(Bill of Materials) 기능을 사용하고 있습니다.JUNIT 5 의존성에 대해 이렇게 설명합니다. testImplementation(enforcedPlatform("org.junit:junit-bom:5.4.0")) // JUnit 5 BOM testImplementation("org.junit.jupiter:junit-jupiter-api") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") testImplementation("org.junit.jupiter:junit-jupiter-params") 제 가정은 BOM을 제공하는 것이 종속성의 버전을 해..