-
Unresolved directive in verifier/introduction.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-contract/1.0.x/samples/standalone/contracts/src/assembly/contracts.xml[indent=0]
-
-===== Workflow
-
-The workflow would look similar to the one presented in the `Step by step guide to CDC`. The only difference
- is that the producer doesn't own the contracts anymore. So the consumer and the producer have to work on
- common contracts in a common repository.
-
-====== Consumer
-
-When the *consumer* wants to work on the contracts offline, instead of cloning the producer code, the
-consumer team clones the common repository, goes to the required producer's folder (e.g. `com/example/server`)
-and runs `mvn clean install -DskipTests` to install locally the stubs converted from the contracts.
-
-TIP: You need to have http://maven.apache.org/download.cgi[Maven installed locally]
-
-====== Producer
-
-As a *producer* it's enough to alter the Spring Cloud Contract Verifier to provide the URL and the dependency
-of the JAR containing the contracts:
-
-[source,xml,indent=0]
+
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+ <id>project</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <fileSets>
+ <fileSet>
+ <directory>${project.basedir}</directory>
+ <outputDirectory>/</outputDirectory>
+ <useDefaultExcludes>true</useDefaultExcludes>
+ <excludes>
+ <exclude>**/${project.build.directory}/**</exclude>
+ <exclude>mvnw</exclude>
+ <exclude>mvnw.cmd</exclude>
+ <exclude>.mvn/**</exclude>
+ <exclude>src/**</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>