diff --git a/multi/multi__migrations.html b/multi/multi__migrations.html index 9e0c5c90b2..2063895a22 100644 --- a/multi/multi__migrations.html +++ b/multi/multi__migrations.html @@ -1,6 +1,6 @@
-This section covers migrating from one version of Spring Cloud Contract Verifier to the +
This section covers migrating from one version of Spring Cloud Contract Verifier to the next version. It covers the following versions upgrade paths:
This section covers upgrading from version 1.0 to version 1.1.
In 1.1.x we have introduced a change to the structure of generated stubs. If you have
been using the @AutoConfigureWireMock notation to use the stubs from the classpath,
it no longer works. The following example shows how the @AutoConfigureWireMock notation
@@ -87,12 +87,9 @@ detail.
See issue 260 for more detail.
In order to add support for fromRequest.path, the following methods had to be added to the
TemplateProcessor interface:
path()path(int index)See issue 388 for more -detail.
== Links
The following links may be helpful when working with Spring Cloud Contract Verifier:
Rest Assured, used in the generated test classes, got bumped to 3.0. If
+you manually set versions of Spring Cloud Contract and the release train
+you might see the following exception:
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (default-testCompile) on project some-project: Compilation failure: Compilation failure: +[ERROR] /some/path/SomeClass.java:[4,39] package com.jayway.restassured.response does not exist
This exception will occur due to the fact that the tests got generated with +an old version of plugin and at test execution time you have an incompatible +version of the release train (and vice versa).
Done via issue 267