feign icon indicating copy to clipboard operation
feign copied to clipboard

archaius-core not used outside test

Open mikrethor opened this issue 4 years ago • 0 comments

When investigating why my project was getting commons-lang 2.6 I found out it was coming because archaius-core. Looking forward, it seems it's only use for test purpose.

Change pom.xml in feign-hystrix from :

    <dependency>
      <groupId>com.netflix.archaius</groupId>
      <artifactId>archaius-core</artifactId>
    </dependency>

to

    <dependency>
      <groupId>com.netflix.archaius</groupId>
      <artifactId>archaius-core</artifactId>
      <scope>test</scope>
    </dependency>

mikrethor avatar Aug 30 '21 17:08 mikrethor