I am trying to exclude one of the class from a particular dependency in maven but i am unable to exclude that with
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
From spring.cloud.framework.autoconfigure i am trying to exclude this class -> ConfigurationPropertiesRebinderAutoConfiguration.class
I would sincerely appreciate if someone can show me how to achieve this