Maven + Spring Boot: Found multiple occurrences of org.json.JSONObject on the class path:

后端 未结 6 1441
离开以前
离开以前 2020-12-13 13:17

When I run mvn test I get this warning. How can I fix it?

Found multiple occurrences of org.json.JSONObject on the class path:

        jar:fil         


        
6条回答
  •  隐瞒了意图╮
    2020-12-13 13:46

    Gradle kotlin DSL version based on the accepted answer

    testImplementation("org.springframework.boot:spring-boot-starter-test") {
            exclude (
                    group = "com.vaadin.external.google",
                    module = "android-json"
            )
        }
    

提交回复
热议问题