56 lines
2.2 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2019-12-05 16:56:52 +02:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-cloud-ribbon-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-cloud-ribbon-client</name>
<packaging>jar</packaging>
<description>Introduction to Spring Cloud Rest Client with Netflix Ribbon</description>
<parent>
<groupId>com.baeldung</groupId>
2020-07-07 14:18:10 +03:00
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
2020-07-07 14:18:10 +03:00
<relativePath>../../parent-boot-2</relativePath>
</parent>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud-dependencies.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2019-12-05 16:56:52 +02:00
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
2020-07-07 14:18:10 +03:00
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
2019-12-05 16:56:52 +02:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<properties>
2020-07-07 14:18:10 +03:00
<spring-cloud-dependencies.version>Hoxton.SR4</spring-cloud-dependencies.version>
<!-- testing -->
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<junit-jupiter.version>5.6.2</junit-jupiter.version>
<junit.version>4.13</junit.version>
</properties>
</project>