Skip to content

Instantly share code, notes, and snippets.

@jeonguk
Created September 11, 2018 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeonguk/a9bc01895f0922b2628e88cb3137e69b to your computer and use it in GitHub Desktop.
Save jeonguk/a9bc01895f0922b2628e88cb3137e69b to your computer and use it in GitHub Desktop.
openfeign maven config
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<version>2.0.1.RELEASE</version>
<exclusions>
<exclusion> <!-- declare the exclusion here -->
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix-ribbon</artifactId>
</exclusion>
<exclusion> <!-- declare the exclusion here -->
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-netflix-archaius</artifactId>
</exclusion>
<exclusion> <!-- declare the exclusion here -->
<groupId>io.github.openfeign</groupId>
<artifactId>feign-hystri</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-core</artifactId>
<version>10.0.1</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-httpclient</artifactId>
<version>10.0.1</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-gson</artifactId>
<version>10.0.1</version>
</dependency>
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-slf4j</artifactId>
<version>10.0.1</version>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment