spring-cloud / spring-cloud-schema-registry

A schema registry implementation for Spring Cloud Stream
47 stars 28 forks source link

Exclude jackson-dataformat-xml #61

Open JordiMartinezVicent opened 7 months ago

JordiMartinezVicent commented 7 months ago

As far I see at https://github.com/spring-cloud/spring-cloud-schema-registry/blob/7d99ccbea4cdf02e1431c9345938ff7c89f463ae/spring-cloud-schema-registry-client/pom.xml#L76

<dependency>
            <!-- used for testing https://github.com/spring-cloud/spring-cloud-schema-registry/issues/19 -->
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-xml</artifactId>
            <scope>tests</scope>
        </dependency>

the dependency jackson-dataformat-xml should be excluded but it is not because the scope is tests instead of test. (note the last s)