Gurinder spring cloud contract (#3547)

* adding producer side sample for spring-cloud-contract

* adding consumer side sample for spring-cloud-contract

* removing un neccessary code

* adding latest version for spring-cloud-contract in both producer and consumer

* adding producer dependency in consumer

* refactoring after review-1

* refactoring after review-2

* refactoring after review-3
This commit is contained in:
Gurinder Singh
2018-02-17 07:39:35 +05:30
committed by KevinGilmore
parent 414d805f6b
commit b219245e5b
14 changed files with 349 additions and 1 deletions
@@ -0,0 +1,23 @@
<?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"
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>
<parent>
<groupId>com.baeldung.spring.cloud</groupId>
<artifactId>spring-cloud</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<modules>
<module>spring-cloud-contract-producer</module>
<module>spring-cloud-contract-consumer</module>
</modules>
<packaging>pom</packaging>
<groupId>com.baeldung.spring.cloud</groupId>
<artifactId>spring-cloud-contract</artifactId>
<version>1.0.0-SNAPSHOT</version>
</project>