diff --git a/README.adoc b/README.adoc
index fcfbc89aff..b8114488e7 100644
--- a/README.adoc
+++ b/README.adoc
@@ -229,10 +229,7 @@ Stub Runner` properties, as shown in the following example:
+
[source,yaml,indent=0]
----
-stubrunner:
- ids: 'com.example:http-server-dsl:+:stubs:8080'
- repositoryRoot: https://repo.spring.io/libs-snapshot
-----
+Unresolved directive in verifier_introduction.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-contract/2.1.x/samples/standalone/dsl/http-client/src/test/resources/application-test-repo.yaml[]
Now you can annotate your test class with `@AutoConfigureStubRunner`. In the annotation,
provide the `group-id` and `artifact-id` values for `Spring Cloud Contract Stub Runner` to
@@ -560,10 +557,7 @@ Runner` properties, as shown in the following example:
+
[source,yaml,indent=0]
----
-stubrunner:
- ids: 'com.example:http-server-dsl:+:stubs:8080'
- repositoryRoot: https://repo.spring.io/libs-snapshot
-----
+Unresolved directive in verifier_introduction.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-contract/2.1.x/samples/standalone/dsl/http-client/src/test/resources/application-test-repo.yaml[]
Now you can annotate your test class with `@AutoConfigureStubRunner`. In the annotation,
provide the `group-id` and `artifact-id` for `Spring Cloud Contract Stub Runner` to run
@@ -1510,10 +1504,7 @@ achieving the same thing by changing the properties.
[source,yaml,indent=0]
----
-stubrunner:
- ids: 'com.example:http-server-dsl:+:stubs:8080'
- repositoryRoot: https://repo.spring.io/libs-snapshot
-----
+Unresolved directive in verifier_introduction.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-contract/2.1.x/samples/standalone/dsl/http-client/src/test/resources/application-test-repo.yaml[]
That's it!
@@ -1912,8 +1903,8 @@ public class ApplicationTests {
mockMvc.perform(post("/resource")
.content("{\"id\":\"123456\",\"message\":\"Hello World\"}"))
.andExpect(status().isOk())
- .andDo(verify().jsonPath("$.id"))
- .andDo(document("resource"));
+ .andDo(verify().jsonPath("$.id")
+ .stub("resource"));
}
}
----
@@ -1938,8 +1929,8 @@ following example:
.andDo(verify()
.wiremock(WireMock.post(
urlPathEquals("/resource"))
- .withRequestBody(matchingJsonPath("$.id")))
- .andDo(document("post-resource"));
+ .withRequestBody(matchingJsonPath("$.id"))
+ .stub("post-resource"));
}
----
@@ -2007,7 +1998,8 @@ Consider the following test:
// first WireMock
.andDo(WireMockRestDocs.verify().jsonPath("$[?(@.foo >= 20)]")
.jsonPath("$[?(@.bar in ['baz','bazz','bazzz'])]")
- .contentType(MediaType.valueOf("application/json")))
+ .contentType(MediaType.valueOf("application/json"))
+ .stub("shouldGrantABeerIfOldEnough"))
// then Contract DSL documentation
.andDo(document("index", SpringCloudContractRestDocs.dslContract()));
----
@@ -2059,186 +2051,7 @@ You can read more about Spring Cloud Contract Verifier by reading the
== Contributing
-:spring-cloud-build-branch: master
-
-Spring Cloud is released under the non-restrictive Apache 2.0 license,
-and follows a very standard Github development process, using Github
-tracker for issues and merging pull requests into master. If you want
-to contribute even something trivial please do not hesitate, but
-follow the guidelines below.
-
-=== Sign the Contributor License Agreement
-Before we accept a non-trivial patch or pull request we will need you to sign the
-https://cla.pivotal.io/sign/spring[Contributor License Agreement].
-Signing the contributor's agreement does not grant anyone commit rights to the main
-repository, but it does mean that we can accept your contributions, and you will get an
-author credit if we do. Active contributors might be asked to join the core team, and
-given the ability to merge pull requests.
-
-=== Code of Conduct
-This project adheres to the Contributor Covenant https://github.com/spring-cloud/spring-cloud-build/blob/master/docs/src/main/asciidoc/code-of-conduct.adoc[code of
-conduct]. By participating, you are expected to uphold this code. Please report
-unacceptable behavior to spring-code-of-conduct@pivotal.io.
-
-=== Code Conventions and Housekeeping
-None of these is essential for a pull request, but they will all help. They can also be
-added after the original pull request but before a merge.
-
-* Use the Spring Framework code format conventions. If you use Eclipse
- you can import formatter settings using the
- `eclipse-code-formatter.xml` file from the
- https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-dependencies-parent/eclipse-code-formatter.xml[Spring
- Cloud Build] project. If using IntelliJ, you can use the
- https://plugins.jetbrains.com/plugin/6546[Eclipse Code Formatter
- Plugin] to import the same file.
-* Make sure all new `.java` files to have a simple Javadoc class comment with at least an
- `@author` tag identifying you, and preferably at least a paragraph on what the class is
- for.
-* Add the ASF license header comment to all new `.java` files (copy from existing files
- in the project)
-* Add yourself as an `@author` to the .java files that you modify substantially (more
- than cosmetic changes).
-* Add some Javadocs and, if you change the namespace, some XSD doc elements.
-* A few unit tests would help a lot as well -- someone has to do it.
-* If no-one else is using your branch, please rebase it against the current master (or
- other target branch in the main project).
-* When writing a commit message please follow https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
- if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
- message (where XXXX is the issue number).
-
-=== Checkstyle
-
-Spring Cloud Build comes with a set of checkstyle rules. You can find them in the `spring-cloud-build-tools` module. The most notable files under the module are:
-
-.spring-cloud-build-tools/
-----
-└── src
- ├── checkstyle
- │ └── checkstyle-suppressions.xml <3>
- └── main
- └── resources
- ├── checkstyle-header.txt <2>
- └── checkstyle.xml <1>
-----
-<1> Default Checkstyle rules
-<2> File header setup
-<3> Default suppression rules
-
-==== Checkstyle configuration
-
-Checkstyle rules are *disabled by default*. To add checkstyle to your project just define the following properties and plugins.
-
-.pom.xml
-----
-
-true <1>
- true
- <2>
- true
- <3>
-
-
-
-
- <4>
- io.spring.javaformat
- spring-javaformat-maven-plugin
-
- <5>
- org.apache.maven.plugins
- maven-checkstyle-plugin
-
-
-
-
-
- <5>
- org.apache.maven.plugins
- maven-checkstyle-plugin
-
-
-
-
-----
-<1> Fails the build upon Checkstyle errors
-<2> Fails the build upon Checkstyle violations
-<3> Checkstyle analyzes also the test sources
-<4> Add the Spring Java Format plugin that will reformat your code to pass most of the Checkstyle formatting rules
-<5> Add checkstyle plugin to your build and reporting phases
-
-If you need to suppress some rules (e.g. line length needs to be longer), then it's enough for you to define a file under `${project.root}/src/checkstyle/checkstyle-suppressions.xml` with your suppressions. Example:
-
-.projectRoot/src/checkstyle/checkstyle-suppresions.xml
-----
-
-
-
-
-
-
-----
-
-It's advisable to copy the `${spring-cloud-build.rootFolder}/.editorconfig` and `${spring-cloud-build.rootFolder}/.springformat` to your project. That way, some default formatting rules will be applied. You can do so by running this script:
-
-```bash
-$ curl https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/.editorconfig -o .editorconfig
-$ touch .springformat
-```
-
-=== IDE setup
-
-==== Intellij IDEA
-
-In order to setup Intellij you should import our coding conventions, inspection profiles and set up the checkstyle plugin.
-The following files can be found in the https://github.com/spring-cloud/spring-cloud-build/tree/master/spring-cloud-build-tools[Spring Cloud Build] project.
-
-.spring-cloud-build-tools/
-----
-└── src
- ├── checkstyle
- │ └── checkstyle-suppressions.xml <3>
- └── main
- └── resources
- ├── checkstyle-header.txt <2>
- ├── checkstyle.xml <1>
- └── intellij
- ├── Intellij_Project_Defaults.xml <4>
- └── Intellij_Spring_Boot_Java_Conventions.xml <5>
-----
-<1> Default Checkstyle rules
-<2> File header setup
-<3> Default suppression rules
-<4> Project defaults for Intellij that apply most of Checkstyle rules
-<5> Project style conventions for Intellij that apply most of Checkstyle rules
-
-.Code style
-
-image::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/{spring-cloud-build-branch}/docs/src/main/asciidoc/images/intellij-code-style.png[Code style]
-
-Go to `File` -> `Settings` -> `Editor` -> `Code style`. There click on the icon next to the `Scheme` section. There, click on the `Import Scheme` value and pick the `Intellij IDEA code style XML` option. Import the `spring-cloud-build-tools/src/main/resources/intellij/Intellij_Spring_Boot_Java_Conventions.xml` file.
-
-.Inspection profiles
-
-image::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/{spring-cloud-build-branch}/docs/src/main/asciidoc/images/intellij-inspections.png[Code style]
-
-Go to `File` -> `Settings` -> `Editor` -> `Inspections`. There click on the icon next to the `Profile` section. There, click on the `Import Profile` and import the `spring-cloud-build-tools/src/main/resources/intellij/Intellij_Project_Defaults.xml` file.
-
-.Checkstyle
-
-To have Intellij work with Checkstyle, you have to install the `Checkstyle` plugin. It's advisable to also install the `Assertions2Assertj` to automatically convert the JUnit assertions
-
-image::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/{spring-cloud-build-branch}/docs/src/main/asciidoc/images/intellij-checkstyle.png[Checkstyle]
-
-Go to `File` -> `Settings` -> `Other settings` -> `Checkstyle`. There click on the `+` icon in the `Configuration file` section. There, you'll have to define where the checkstyle rules should be picked from. In the image above, we've picked the rules from the cloned Spring Cloud Build repository. However, you can point to the Spring Cloud Build's GitHub repository (e.g. for the `checkstyle.xml` : `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-build-tools/src/main/resources/checkstyle.xml`). We need to provide the following variables:
-
-- `checkstyle.header.file` - please point it to the Spring Cloud Build's, `spring-cloud-build-tools/src/main/resources/checkstyle-header.txt` file either in your cloned repo or via the `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-build-tools/src/main/resources/checkstyle-header.txt` URL.
-- `checkstyle.suppressions.file` - default suppressions. Please point it to the Spring Cloud Build's, `spring-cloud-build-tools/src/checkstyle/checkstyle-suppressions.xml` file either in your cloned repo or via the `https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/spring-cloud-build-tools/src/checkstyle/checkstyle-suppressions.xml` URL.
-- `checkstyle.additional.suppressions.file` - this variable corresponds to suppressions in your local project. E.g. you're working on `spring-cloud-contract`. Then point to the `project-root/src/checkstyle/checkstyle-suppressions.xml` folder. Example for `spring-cloud-contract` would be: `/home/username/spring-cloud-contract/src/checkstyle/checkstyle-suppressions.xml`.
-
-IMPORTANT: Remember to set the `Scan Scope` to `All sources` since we apply checkstyle rules for production and test sources.
-
+Unresolved directive in README.adoc - include::https://raw.githubusercontent.com/spring-cloud/spring-cloud-build/master/docs/src/main/asciidoc/contributing.adoc[]
== How to build it
IMPORTANT: You need to have all the necessary Groovy plugins
diff --git a/docker/pom.xml b/docker/pom.xml
index e844b0c7fc..f01ab072bd 100644
--- a/docker/pom.xml
+++ b/docker/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-docker-parent
pom
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
Spring Cloud Contract Docker Parent
Spring Cloud Contract Docker Parent
diff --git a/docker/spring-cloud-contract-docker/pom.xml b/docker/spring-cloud-contract-docker/pom.xml
index 1796141cb3..932e91fed7 100644
--- a/docker/spring-cloud-contract-docker/pom.xml
+++ b/docker/spring-cloud-contract-docker/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-contract-docker-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-docker
pom
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
Spring Cloud Contract Docker
Spring Cloud Contract Docker
diff --git a/docker/spring-cloud-contract-docker/project/gradle.properties b/docker/spring-cloud-contract-docker/project/gradle.properties
index 1ec8028429..8ad5f4903e 100644
--- a/docker/spring-cloud-contract-docker/project/gradle.properties
+++ b/docker/spring-cloud-contract-docker/project/gradle.properties
@@ -1,2 +1,2 @@
org.gradle.daemon=false
-verifierVersion=2.1.5.RELEASE
+verifierVersion=2.1.5.BUILD-SNAPSHOT
diff --git a/docker/spring-cloud-contract-stub-runner-docker/pom.xml b/docker/spring-cloud-contract-stub-runner-docker/pom.xml
index 9d98d50a0b..fb4bf1dfb1 100644
--- a/docker/spring-cloud-contract-stub-runner-docker/pom.xml
+++ b/docker/spring-cloud-contract-stub-runner-docker/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-contract-docker-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-docker
pom
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
Spring Cloud Contract Stub Runner Docker
Spring Cloud Contract Stub Runner Docker
diff --git a/docs/pom.xml b/docs/pom.xml
index 67b4ec0c86..22013e68a4 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-docs
diff --git a/pom.xml b/pom.xml
index a400f95078..7fc548860c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-build
- 2.1.10.RELEASE
+ 2.1.10.BUILD-SNAPSHOT
spring-cloud-contract-parent
pom
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
Spring Cloud Contract
Spring Cloud Contract
@@ -28,12 +28,12 @@
2.17
3.5.13
0.0.9
- 2.1.10.RELEASE
- 2.1.4.RELEASE
+ 2.1.10.BUILD-SNAPSHOT
+ 2.1.5.BUILD-SNAPSHOT
Fishtown.SR4
- 2.1.5.RELEASE
- 2.1.5.RELEASE
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
+ 2.1.5.BUILD-SNAPSHOT
+ 2.1.5.BUILD-SNAPSHOT
5.0.3
3.2.9
1.0-groovy-2.4
diff --git a/samples/pom.xml b/samples/pom.xml
index cd87eb85e8..c8d05b7857 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-samples
pom
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
Spring Cloud Contract Samples
Spring Cloud Contract Samples
diff --git a/samples/standalone/pom.xml b/samples/standalone/pom.xml
index 3f2fe88de5..6a00b0d12f 100644
--- a/samples/standalone/pom.xml
+++ b/samples/standalone/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-contract-samples
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-samples-standalone
pom
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
Spring Cloud Contract Standalone Test Samples
Spring Cloud Contract Standalone Test Samples used for end to end tests
diff --git a/samples/wiremock-jetty/pom.xml b/samples/wiremock-jetty/pom.xml
index a07e65a98e..8dd970224b 100644
--- a/samples/wiremock-jetty/pom.xml
+++ b/samples/wiremock-jetty/pom.xml
@@ -5,7 +5,7 @@
4.0.0
wiremock-jetty
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
jar
wiremock-jetty
@@ -21,7 +21,7 @@
UTF-8
1.8
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
diff --git a/samples/wiremock-native/pom.xml b/samples/wiremock-native/pom.xml
index 1985847b9a..aed393dea4 100644
--- a/samples/wiremock-native/pom.xml
+++ b/samples/wiremock-native/pom.xml
@@ -5,7 +5,7 @@
4.0.0
wiremock-native
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
jar
wiremock-native
@@ -21,7 +21,7 @@
UTF-8
1.8
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
diff --git a/samples/wiremock-tomcat/pom.xml b/samples/wiremock-tomcat/pom.xml
index 81cc502d38..5c74cff46e 100644
--- a/samples/wiremock-tomcat/pom.xml
+++ b/samples/wiremock-tomcat/pom.xml
@@ -5,7 +5,7 @@
4.0.0
wiremock-tomcat
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
jar
wiremock-tomcat
@@ -21,7 +21,7 @@
UTF-8
1.8
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
diff --git a/samples/wiremock-undertow-ssl/pom.xml b/samples/wiremock-undertow-ssl/pom.xml
index d3b7502caa..323ceb00af 100644
--- a/samples/wiremock-undertow-ssl/pom.xml
+++ b/samples/wiremock-undertow-ssl/pom.xml
@@ -5,7 +5,7 @@
4.0.0
wiremock-undertow-ssl
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
jar
wiremock-undertow-ssl
@@ -21,7 +21,7 @@
UTF-8
1.8
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
diff --git a/samples/wiremock-undertow/pom.xml b/samples/wiremock-undertow/pom.xml
index 400c61ef9f..4698d0e43f 100644
--- a/samples/wiremock-undertow/pom.xml
+++ b/samples/wiremock-undertow/pom.xml
@@ -5,7 +5,7 @@
4.0.0
wiremock-undertow
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
jar
wiremock-undertow
@@ -21,7 +21,7 @@
UTF-8
1.8
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
diff --git a/samples/wiremock/pom.xml b/samples/wiremock/pom.xml
index c849970b0d..f78d9d5fdd 100644
--- a/samples/wiremock/pom.xml
+++ b/samples/wiremock/pom.xml
@@ -5,7 +5,7 @@
4.0.0
wiremock
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
jar
wiremock
@@ -21,7 +21,7 @@
UTF-8
1.8
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-dependencies/pom.xml b/spring-cloud-contract-dependencies/pom.xml
index c09e3233fd..34c48aae2a 100644
--- a/spring-cloud-contract-dependencies/pom.xml
+++ b/spring-cloud-contract-dependencies/pom.xml
@@ -6,11 +6,11 @@
spring-cloud-dependencies-parent
org.springframework.cloud
- 2.1.10.RELEASE
+ 2.1.10.BUILD-SNAPSHOT
spring-cloud-contract-dependencies
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
pom
spring-cloud-contract-dependencies
Spring Cloud Contract Dependencies
diff --git a/spring-cloud-contract-shade/pom.xml b/spring-cloud-contract-shade/pom.xml
index 1ff82ea725..4ae2ecd9b6 100644
--- a/spring-cloud-contract-shade/pom.xml
+++ b/spring-cloud-contract-shade/pom.xml
@@ -15,7 +15,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-shade
diff --git a/spring-cloud-contract-spec/pom.xml b/spring-cloud-contract-spec/pom.xml
index 18e47a5270..0c9f9533fd 100644
--- a/spring-cloud-contract-spec/pom.xml
+++ b/spring-cloud-contract-spec/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-spec
diff --git a/spring-cloud-contract-starters/pom.xml b/spring-cloud-contract-starters/pom.xml
index 3df568c114..f653811aa3 100644
--- a/spring-cloud-contract-starters/pom.xml
+++ b/spring-cloud-contract-starters/pom.xml
@@ -7,7 +7,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner-jetty/pom.xml b/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner-jetty/pom.xml
index 0a0303243a..563aa29030 100644
--- a/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner-jetty/pom.xml
+++ b/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner-jetty/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-starters
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-starter-contract-stub-runner-jetty
diff --git a/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner/pom.xml b/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner/pom.xml
index 433aaa394e..219b9a520e 100644
--- a/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner/pom.xml
+++ b/spring-cloud-contract-starters/spring-cloud-starter-contract-stub-runner/pom.xml
@@ -23,7 +23,7 @@
org.springframework.cloud
spring-cloud-contract-starters
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-starter-contract-stub-runner
diff --git a/spring-cloud-contract-starters/spring-cloud-starter-contract-verifier/pom.xml b/spring-cloud-contract-starters/spring-cloud-starter-contract-verifier/pom.xml
index ebb5764843..743ddcbc07 100644
--- a/spring-cloud-contract-starters/spring-cloud-starter-contract-verifier/pom.xml
+++ b/spring-cloud-contract-starters/spring-cloud-starter-contract-verifier/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-starters
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-starter-contract-verifier
diff --git a/spring-cloud-contract-stub-runner-boot/pom.xml b/spring-cloud-contract-stub-runner-boot/pom.xml
index a67fdee8ec..c1a4d63ad4 100644
--- a/spring-cloud-contract-stub-runner-boot/pom.xml
+++ b/spring-cloud-contract-stub-runner-boot/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-boot
diff --git a/spring-cloud-contract-stub-runner/pom.xml b/spring-cloud-contract-stub-runner/pom.xml
index e9703e46e1..a8eb5b666d 100644
--- a/spring-cloud-contract-stub-runner/pom.xml
+++ b/spring-cloud-contract-stub-runner/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner
diff --git a/spring-cloud-contract-tools/pom.xml b/spring-cloud-contract-tools/pom.xml
index 42336a0d80..85ea2e8032 100644
--- a/spring-cloud-contract-tools/pom.xml
+++ b/spring-cloud-contract-tools/pom.xml
@@ -7,7 +7,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-converters/pom.xml b/spring-cloud-contract-tools/spring-cloud-contract-converters/pom.xml
index cf7f9a4b65..85086d2297 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-converters/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-converters/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-converters
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/gradle.properties
index 0442f46f2c..c783bd67c2 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/gradle.properties
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/gradle.properties
@@ -15,7 +15,7 @@
#
nexusUsername=
nexusPassword=
-verifierVersion=2.1.5.RELEASE
+verifierVersion=2.1.5.BUILD-SNAPSHOT
org.gradle.daemon=false
aetherVersion=1.1.0
-springCloudBuildVersion=2.1.10.RELEASE
+springCloudBuildVersion=2.1.10.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/pom.xml b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/pom.xml
index bc5ac9cc45..a999ae394f 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/bootSimple/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/bootSimple/gradle.properties
index e1f92a0ff7..4976fc9555 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/bootSimple/gradle.properties
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/bootSimple/gradle.properties
@@ -15,5 +15,5 @@
#
wiremockVersion=2.20.0
jsonAssertVersion=0.4.13
-verifierVersion=2.1.5.RELEASE
+verifierVersion=2.1.5.BUILD-SNAPSHOT
groovyVersion=2.4.15
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleJerseyProject/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleJerseyProject/gradle.properties
index 199e3d3930..d43cece332 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleJerseyProject/gradle.properties
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleJerseyProject/gradle.properties
@@ -15,5 +15,5 @@
#
wiremockVersion=2.20.0
jsonAssertVersion=0.4.13
-verifierVersion=2.1.5.RELEASE
+verifierVersion=2.1.5.BUILD-SNAPSHOT
bootVersion=2.1.10.RELEASE
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleProject/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleProject/gradle.properties
index 199e3d3930..d43cece332 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleProject/gradle.properties
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/sampleProject/gradle.properties
@@ -15,5 +15,5 @@
#
wiremockVersion=2.20.0
jsonAssertVersion=0.4.13
-verifierVersion=2.1.5.RELEASE
+verifierVersion=2.1.5.BUILD-SNAPSHOT
bootVersion=2.1.10.RELEASE
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties
index c941b45dd5..2dc35b3f03 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/test/resources/functionalTest/scenarioProject/gradle.properties
@@ -15,6 +15,6 @@
#
wiremockVersion=2.20.0
jsonAssertVersion=0.4.13
-verifierVersion=2.1.5.RELEASE
+verifierVersion=2.1.5.BUILD-SNAPSHOT
bootVersion=2.1.10.RELEASE
groovyVersion=2.4.15
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-portal-plugin/pom.xml b/spring-cloud-contract-tools/spring-cloud-contract-gradle-portal-plugin/pom.xml
index 9ba44bb81e..071a10da27 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-gradle-portal-plugin/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-gradle-portal-plugin/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/pom.xml b/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/pom.xml
index 2c8de2bc2a..0455b43567 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-maven-plugin/pom.xml
@@ -7,7 +7,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
@@ -47,7 +47,7 @@
1.13.7
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
2016
diff --git a/spring-cloud-contract-tools/spring-cloud-contract-pact/pom.xml b/spring-cloud-contract-tools/spring-cloud-contract-pact/pom.xml
index c02c2f1d19..fbd02bd4cc 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-pact/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-pact/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-pact
diff --git a/spring-cloud-contract-verifier/pom.xml b/spring-cloud-contract-verifier/pom.xml
index d7ede8fee7..3cbedfb378 100644
--- a/spring-cloud-contract-verifier/pom.xml
+++ b/spring-cloud-contract-verifier/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-verifier
diff --git a/spring-cloud-contract-wiremock/pom.xml b/spring-cloud-contract-wiremock/pom.xml
index 68692c0481..284f2548f7 100644
--- a/spring-cloud-contract-wiremock/pom.xml
+++ b/spring-cloud-contract-wiremock/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-wiremock
diff --git a/tests/pom.xml b/tests/pom.xml
index 3120fa2428..ee809cd176 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -7,7 +7,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
diff --git a/tests/samples-messaging-amqp/pom.xml b/tests/samples-messaging-amqp/pom.xml
index 156761f8f7..edf5a7276a 100644
--- a/tests/samples-messaging-amqp/pom.xml
+++ b/tests/samples-messaging-amqp/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-amqp
diff --git a/tests/samples-messaging-camel/pom.xml b/tests/samples-messaging-camel/pom.xml
index a5d51b0818..141565749d 100644
--- a/tests/samples-messaging-camel/pom.xml
+++ b/tests/samples-messaging-camel/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-camel
diff --git a/tests/samples-messaging-integration/pom.xml b/tests/samples-messaging-integration/pom.xml
index 7d2a77bfcc..1b1d8fbf1f 100644
--- a/tests/samples-messaging-integration/pom.xml
+++ b/tests/samples-messaging-integration/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-integration
diff --git a/tests/samples-messaging-stream/pom.xml b/tests/samples-messaging-stream/pom.xml
index 77f6de3a17..c285c11c04 100644
--- a/tests/samples-messaging-stream/pom.xml
+++ b/tests/samples-messaging-stream/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-stream
diff --git a/tests/spring-cloud-contract-stub-runner-amqp/pom.xml b/tests/spring-cloud-contract-stub-runner-amqp/pom.xml
index 40e072c183..6938a0473a 100644
--- a/tests/spring-cloud-contract-stub-runner-amqp/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-amqp/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-amqp
diff --git a/tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml b/tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml
index fc950f4e07..a64e9bb0a6 100644
--- a/tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-boot-eureka
diff --git a/tests/spring-cloud-contract-stub-runner-boot-zookeeper/pom.xml b/tests/spring-cloud-contract-stub-runner-boot-zookeeper/pom.xml
index 2796409407..f69febc188 100644
--- a/tests/spring-cloud-contract-stub-runner-boot-zookeeper/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-boot-zookeeper/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-boot-zookeeper
diff --git a/tests/spring-cloud-contract-stub-runner-camel/pom.xml b/tests/spring-cloud-contract-stub-runner-camel/pom.xml
index 24a373d85f..82a7d65205 100644
--- a/tests/spring-cloud-contract-stub-runner-camel/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-camel/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-camel
diff --git a/tests/spring-cloud-contract-stub-runner-context-path/pom.xml b/tests/spring-cloud-contract-stub-runner-context-path/pom.xml
index 1fa1b101ad..6a4379929e 100644
--- a/tests/spring-cloud-contract-stub-runner-context-path/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-context-path/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-context-path
diff --git a/tests/spring-cloud-contract-stub-runner-integration/pom.xml b/tests/spring-cloud-contract-stub-runner-integration/pom.xml
index fb0b427781..09e03ee932 100644
--- a/tests/spring-cloud-contract-stub-runner-integration/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-integration/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-integration
diff --git a/tests/spring-cloud-contract-stub-runner-moco-contract-jar/pom.xml b/tests/spring-cloud-contract-stub-runner-moco-contract-jar/pom.xml
index 6b6208ef55..2ea85e2e3f 100644
--- a/tests/spring-cloud-contract-stub-runner-moco-contract-jar/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-moco-contract-jar/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-moco-contract-jar
diff --git a/tests/spring-cloud-contract-stub-runner-moco/pom.xml b/tests/spring-cloud-contract-stub-runner-moco/pom.xml
index 7cf598ec97..d8adb34de4 100644
--- a/tests/spring-cloud-contract-stub-runner-moco/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-moco/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-moco
diff --git a/tests/spring-cloud-contract-stub-runner-stream/pom.xml b/tests/spring-cloud-contract-stub-runner-stream/pom.xml
index 769acae87f..2549ca1fc6 100644
--- a/tests/spring-cloud-contract-stub-runner-stream/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-stream/pom.xml
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.1.5.RELEASE
+ 2.1.5.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-stream