2016-09-01 07:54:53 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-07-12 03:04:54 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-09-01 07:54:53 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>rest-producer</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>rest-producer</name>
|
2019-02-09 15:17:19 -05:00
|
|
|
<packaging>jar</packaging>
|
2016-09-01 07:54:53 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-hystrix</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2016-12-08 17:16:17 -05:00
|
|
|
<version>${spring-boot-starter-web.version}</version>
|
2016-09-01 07:54:53 -04:00
|
|
|
</dependency>
|
2019-04-01 10:33:22 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring-boot-starter-web.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-09-01 07:54:53 -04:00
|
|
|
</dependencies>
|
2019-04-01 10:33:22 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- we need the Mockito version provided by Spring Boot -->
|
|
|
|
<mockito.version>1.10.19</mockito.version>
|
|
|
|
</properties>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2016-09-01 07:54:53 -04:00
|
|
|
</project>
|