Skip to content

Commit 3171d83

Browse files
authored
BAEL-2626: Update Feign to 10.11 (eugenp#10105)
1 parent 806b10d commit 3171d83

2 files changed

Lines changed: 1 addition & 22 deletions

File tree

feign/pom.xml

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@
1616
</parent>
1717

1818
<dependencies>
19-
<dependency>
20-
<groupId>io.github.openfeign</groupId>
21-
<artifactId>feign-core</artifactId>
22-
<version>${feign.version}</version>
23-
</dependency>
2419
<dependency>
2520
<groupId>io.github.openfeign</groupId>
2621
<artifactId>feign-okhttp</artifactId>
@@ -44,21 +39,8 @@
4439
</dependency>
4540
</dependencies>
4641

47-
<build>
48-
<pluginManagement>
49-
<plugins>
50-
<plugin>
51-
<groupId>org.springframework.boot</groupId>
52-
<artifactId>spring-boot-maven-plugin</artifactId>
53-
<version>${spring-boot-maven-plugin.version}</version>
54-
</plugin>
55-
</plugins>
56-
</pluginManagement>
57-
</build>
58-
5942
<properties>
60-
<feign.version>9.4.0</feign.version>
61-
<spring-boot-maven-plugin.version>1.4.2.RELEASE</spring-boot-maven-plugin.version>
43+
<feign.version>10.11</feign.version>
6244
</properties>
6345

6446
</project>

feign/src/test/java/com/baeldung/feign/clients/BookClientLiveTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
import lombok.extern.slf4j.Slf4j;
77
import org.junit.Before;
88
import org.junit.Test;
9-
import org.junit.runner.RunWith;
10-
import org.junit.runners.JUnit4;
119

1210
import java.util.List;
1311
import java.util.UUID;
@@ -22,7 +20,6 @@
2220
* Consumes https://github.com/Baeldung/spring-hypermedia-api
2321
*/
2422
@Slf4j
25-
@RunWith(JUnit4.class)
2623
public class BookClientLiveTest {
2724
private BookClient bookClient;
2825

0 commit comments

Comments
 (0)