with this change we're providing support for Pact based contracts. No longer do you have to set up your contracts using the Groovy DSL. In the same way as with the DSL you can use the Pact contracts to generate tests and the stubs on the producer side. fixes #96
28 lines
917 B
XML
28 lines
917 B
XML
<?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>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-contract-parent</artifactId>
|
|
<version>1.1.0.BUILD-SNAPSHOT</version>
|
|
<relativePath>..</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>spring-cloud-contract-tools</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Cloud Contract Tools</name>
|
|
<description>Spring Cloud Contract Tools</description>
|
|
|
|
<modules>
|
|
<module>spring-cloud-contract-converters</module>
|
|
<module>spring-cloud-contract-spec-pact</module>
|
|
<module>spring-cloud-contract-maven-plugin</module>
|
|
<module>spring-cloud-contract-gradle-plugin</module>
|
|
</modules>
|
|
|
|
</project>
|