2018-02-16 21:09:35 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-04-26 08:37:47 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-02-16 21:09:35 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-consumer</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>spring-cloud-contract-consumer</name>
|
|
|
|
<description>Spring Cloud Consumer Sample</description>
|
2019-02-09 15:17:19 -05:00
|
|
|
<packaging>jar</packaging>
|
2018-02-16 21:09:35 -05:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-wiremock</artifactId>
|
|
|
|
<version>1.2.2.RELEASE</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-stub-runner</artifactId>
|
|
|
|
<version>1.2.2.RELEASE</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>1.5.9.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-rest</artifactId>
|
|
|
|
<version>1.5.9.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-contract-producer</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-02-09 15:17:19 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
</properties>
|
2018-02-16 21:09:35 -05:00
|
|
|
</project>
|