2019-10-31 20:43:47 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-14 17:43:57 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 20:43:47 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.cloud</groupId>
|
2020-04-12 04:31:53 +05:30
|
|
|
<artifactId>spring-cloud-openfeign</artifactId>
|
|
|
|
<name>spring-cloud-openfeign</name>
|
2019-10-31 20:43:47 -05:00
|
|
|
<description>OpenFeign project for Spring Boot</description>
|
|
|
|
|
|
|
|
<parent>
|
2022-07-26 20:01:43 +05:30
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-10-31 20:43:47 -05:00
|
|
|
</parent>
|
|
|
|
|
2019-12-05 16:56:52 +02:00
|
|
|
<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>
|
|
|
|
|
2019-10-31 20:43:47 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign</groupId>
|
|
|
|
<artifactId>feign-okhttp</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2021-02-17 13:09:26 +05:30
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign.form</groupId>
|
|
|
|
<artifactId>feign-form</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.openfeign.form</groupId>
|
|
|
|
<artifactId>feign-form-spring</artifactId>
|
2022-01-31 10:48:53 +03:30
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-client</artifactId>
|
|
|
|
</dependency>
|
2019-10-31 20:43:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-03-28 11:01:39 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.tomakehurst</groupId>
|
|
|
|
<artifactId>wiremock-jre8</artifactId>
|
|
|
|
<version>${wire.mock.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-10-31 20:43:47 -05:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2022-08-22 18:17:32 +01:00
|
|
|
<spring-cloud.version>2021.0.3</spring-cloud.version>
|
2023-03-28 11:01:39 +03:00
|
|
|
<wire.mock.version>2.33.2</wire.mock.version>
|
2019-10-31 20:43:47 -05:00
|
|
|
</properties>
|
|
|
|
|
2022-09-13 21:22:49 +05:30
|
|
|
</project>
|