From 0525798e90c208d4ab85de8ea2b0134e22a900d3 Mon Sep 17 00:00:00 2001
From: buildmaster
Example of a <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
- <spring-cloud-contract.version>2.0.1.BUILD-SNAPSHOT</spring-cloud-contract.version>
+ <spring-cloud-contract.version>2.1.0.BUILD-SNAPSHOT</spring-cloud-contract.version>
<spring-cloud-dependencies.version>Finchley.BUILD-SNAPSHOT</spring-cloud-dependencies.version>
<excludeBuildFolders>true</excludeBuildFolders>
</properties>
diff --git a/multi/multi__spring_cloud_contract_verifier_introduction.html b/multi/multi__spring_cloud_contract_verifier_introduction.html
index 1e3d3e4900..b65c5fea4f 100644
--- a/multi/multi__spring_cloud_contract_verifier_introduction.html
+++ b/multi/multi__spring_cloud_contract_verifier_introduction.html
@@ -7,7 +7,7 @@ definitions are used to produce the following resources:
Assume that we have a system consisting of multiple microservices:

If we wanted to test the application in top left corner to determine whether it can communicate with other services, we could do one of two things:
Both have their advantages but also a lot of disadvantages.
Deploy all microservices and perform end to end tests
Advantages:
Disadvantages:
The preceding example uses Spring’s MockMvc to run the tests. This is the default test
mode for HTTP contracts. However, JAX-RX client and explicit HTTP invocations can also be
used. (To do so, change the testMode property of the plugin to JAX-RS or EXPLICIT,
-respectively.)
Apart from the default JUnit, you can instead use Spock tests, by setting the plugin
-testFramework property to Spock.