Quand je lance mvn test
Je reçois cet avertissement. Comment puis-je le réparer?
Found multiple occurrences of org.json.JSONObject on the class path:
jar:file:/C:/Users/Chloe/.m2/repository/org/json/json/20140107/json-20140107.jar!/org/json/JSONObject.class
jar:file:/C:/Users/Chloe/.m2/repository/com/vaadin/external/google/Android-json/0.0.20131108.vaadin1/Android-json-0.0.20131108.vaadin1.jar!/org/json/JSONObject.class
You may wish to exclude one of them to ensure predictable runtime behavior
Voici mon pom.xml . La seule référence à JSON est
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</dependency>
Apache Maven 3.5.3
Ajouter sous
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
L'exclusion suivante:
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.vaadin.external.google</groupId>
<artifactId>Android-json</artifactId>
</exclusion>
</exclusions>
De même, pour les projets Gradle:
testCompile("org.springframework.boot:spring-boot-starter-test") {
exclude group: "com.vaadin.external.google", module:"Android-json"
}
Ajoutez la ligne ci-dessous pour les projets Gradle.
testCompile('org.springframework.boot:spring-boot-starter-test'){
exclude group: "com.vaadin.external.google", module:"Android-json"
}
Cela a fonctionné pour moi:
configurations {
testImplementation.exclude group: 'com.vaadin.external.google', module: 'Android-json'
}