web-dev-qa-db-fra.com

Maven + Spring Boot: a trouvé plusieurs occurrences d'org.json.JSONObject sur le chemin de classe:

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

15
Chloe

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"
}
24
user7294900

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"
}
5
Parthiban

Cela a fonctionné pour moi:

configurations {
     testImplementation.exclude group: 'com.vaadin.external.google', module: 'Android-json'
}
1
Alex Stanovsky