diff --git a/README.adoc b/README.adoc
index 47537efc9b..46633f445c 100644
--- a/README.adoc
+++ b/README.adoc
@@ -1550,14 +1550,6 @@ NOTE: Actually, WireMock always loads mappings from `src/test/resources/mappings
well as* the custom locations in the stubs attribute. To change this behavior, you can
also specify a files root as described in the next section of this document.
-If you're using Spring Cloud Contract's default stub jars, then your
-stubs are stored under `/META-INF/group-id/artifact-id/versions/mappings/` folder. If you want to register all stubs from that location, from all embedded JARs, then it's enough to use the following syntax.
-
-[source,java,indent=0]
-----
-@AutoConfigureWireMock(port = 0, stubs = "classpath*:/META-INF/**/mappings/**/*.json")
-----
-
=== Using Files to Specify the Stub Bodies
WireMock can read response bodies from files on the classpath or the file system. In that
@@ -1958,8 +1950,6 @@ 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
@@ -2005,138 +1995,6 @@ added after the original pull request but before a merge.
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.
-
-.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/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.
-
== 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 6809afb65c..64c54a0c42 100644
--- a/docker/pom.xml
+++ b/docker/pom.xml
@@ -6,13 +6,13 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-docker-parent
pom
- 2.0.3.RELEASE
+ 2.0.3.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 d98ffd2eff..fb7974a425 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.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-docker
pom
- 2.0.3.RELEASE
+ 2.0.3.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 369d3544ce..b404e17b1b 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.0.3.RELEASE
+verifierVersion=2.0.3.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 acadb3fcae..705645b1a1 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.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-docker
pom
- 2.0.3.RELEASE
+ 2.0.3.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 aedefa5cf2..93682af353 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-docs
diff --git a/pom.xml b/pom.xml
index 063ce313f1..e80b818f83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,13 +7,13 @@
org.springframework.cloud
spring-cloud-build
- 2.0.5.RELEASE
+ 2.0.5.BUILD-SNAPSHOT
spring-cloud-contract-parent
pom
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
Spring Cloud Contract
Spring Cloud Contract
@@ -26,12 +26,12 @@
2.17
3.5.13
0.0.9
- 2.0.5.RELEASE
- 2.0.1.RELEASE
- Elmhurst.SR2
- 2.0.3.RELEASE
- 2.0.2.RELEASE
- 2.0.3.RELEASE
+ 2.0.5.BUILD-SNAPSHOT
+ 2.0.0.BUILD-SNAPSHOT
+ Elmhurst.BUILD-SNAPSHOT
+ 2.0.0.BUILD-SNAPSHOT
+ 2.0.0.BUILD-SNAPSHOT
+ 2.0.0.BUILD-SNAPSHOT
5.0.3
3.2.4
1.0-groovy-2.4
diff --git a/samples/pom.xml b/samples/pom.xml
index ae5f1f5ae1..0ba138e48c 100644
--- a/samples/pom.xml
+++ b/samples/pom.xml
@@ -6,13 +6,13 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-samples
pom
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
Spring Cloud Contract Samples
Spring Cloud Contract Samples
diff --git a/samples/standalone/pom.xml b/samples/standalone/pom.xml
index 71b9986c18..19b6177454 100644
--- a/samples/standalone/pom.xml
+++ b/samples/standalone/pom.xml
@@ -6,13 +6,13 @@
org.springframework.cloud
spring-cloud-contract-samples
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-samples-standalone
pom
- 2.0.3.RELEASE
+ 2.0.3.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 891665ecae..540dc68c67 100644
--- a/samples/wiremock-jetty/pom.xml
+++ b/samples/wiremock-jetty/pom.xml
@@ -4,7 +4,7 @@
4.0.0
wiremock-jetty
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
jar
wiremock-jetty
@@ -13,14 +13,14 @@
org.springframework.boot
spring-boot-starter-parent
- 2.0.8.RELEASE
+ 2.0.6.RELEASE
UTF-8
1.8
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
diff --git a/samples/wiremock-native/pom.xml b/samples/wiremock-native/pom.xml
index c8e6dd9b06..4266fe3e6e 100644
--- a/samples/wiremock-native/pom.xml
+++ b/samples/wiremock-native/pom.xml
@@ -4,7 +4,7 @@
4.0.0
wiremock-native
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
jar
wiremock-native
@@ -13,14 +13,14 @@
org.springframework.boot
spring-boot-starter-parent
- 2.0.8.RELEASE
+ 2.0.6.RELEASE
UTF-8
1.8
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
diff --git a/samples/wiremock-tomcat/pom.xml b/samples/wiremock-tomcat/pom.xml
index 7c9bb5d829..640bf751a3 100644
--- a/samples/wiremock-tomcat/pom.xml
+++ b/samples/wiremock-tomcat/pom.xml
@@ -4,7 +4,7 @@
4.0.0
wiremock-tomcat
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
jar
wiremock-tomcat
@@ -13,14 +13,14 @@
org.springframework.boot
spring-boot-starter-parent
- 2.0.8.RELEASE
+ 2.0.6.RELEASE
UTF-8
1.8
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
diff --git a/samples/wiremock-undertow-ssl/pom.xml b/samples/wiremock-undertow-ssl/pom.xml
index 42209b9b3a..89e8a1dd00 100644
--- a/samples/wiremock-undertow-ssl/pom.xml
+++ b/samples/wiremock-undertow-ssl/pom.xml
@@ -4,7 +4,7 @@
4.0.0
wiremock-undertow-ssl
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
jar
wiremock-undertow-ssl
@@ -13,14 +13,14 @@
org.springframework.boot
spring-boot-starter-parent
- 2.0.8.RELEASE
+ 2.0.6.RELEASE
UTF-8
1.8
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
diff --git a/samples/wiremock-undertow/pom.xml b/samples/wiremock-undertow/pom.xml
index dd1a53692d..09b841f600 100644
--- a/samples/wiremock-undertow/pom.xml
+++ b/samples/wiremock-undertow/pom.xml
@@ -4,7 +4,7 @@
4.0.0
wiremock-undertow
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
jar
wiremock-undertow
@@ -13,14 +13,14 @@
org.springframework.boot
spring-boot-starter-parent
- 2.0.8.RELEASE
+ 2.0.6.RELEASE
UTF-8
1.8
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-dependencies/pom.xml b/spring-cloud-contract-dependencies/pom.xml
index 83d51c1d7b..b5557061c0 100644
--- a/spring-cloud-contract-dependencies/pom.xml
+++ b/spring-cloud-contract-dependencies/pom.xml
@@ -5,11 +5,11 @@
spring-cloud-dependencies-parent
org.springframework.cloud
- 2.0.5.RELEASE
+ 2.0.5.BUILD-SNAPSHOT
spring-cloud-contract-dependencies
- 2.0.3.RELEASE
+ 2.0.3.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 8d552236b6..965233281f 100644
--- a/spring-cloud-contract-shade/pom.xml
+++ b/spring-cloud-contract-shade/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-shade
diff --git a/spring-cloud-contract-spec/pom.xml b/spring-cloud-contract-spec/pom.xml
index 4cf0927f73..80eb7317ed 100644
--- a/spring-cloud-contract-spec/pom.xml
+++ b/spring-cloud-contract-spec/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-spec
diff --git a/spring-cloud-contract-starters/pom.xml b/spring-cloud-contract-starters/pom.xml
index fa330c5118..45140940c1 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.0.3.RELEASE
+ 2.0.3.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 b0ca603006..d68421d7d3 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
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-starters
- 2.0.3.RELEASE
+ 2.0.3.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 322009133d..9d1ef620ff 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
@@ -22,7 +22,7 @@
org.springframework.cloud
spring-cloud-contract-starters
- 2.0.3.RELEASE
+ 2.0.3.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 f9f2c28d24..4a6ef7a223 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
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-starters
- 2.0.3.RELEASE
+ 2.0.3.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 6765d9f3c2..2f14b73151 100644
--- a/spring-cloud-contract-stub-runner-boot/pom.xml
+++ b/spring-cloud-contract-stub-runner-boot/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.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 8a052903ca..cdb5b01cba 100644
--- a/spring-cloud-contract-stub-runner/pom.xml
+++ b/spring-cloud-contract-stub-runner/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner
diff --git a/spring-cloud-contract-tools/pom.xml b/spring-cloud-contract-tools/pom.xml
index 54a3a38b9e..a26ef89bec 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.0.3.RELEASE
+ 2.0.3.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 557020aa68..78714576de 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-converters/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-converters/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.0.3.RELEASE
+ 2.0.3.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 63f284b3cd..2229e689a6 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
@@ -16,6 +16,6 @@
nexusUsername =
nexusPassword =
-verifierVersion=2.0.3.RELEASE
+verifierVersion=2.0.3.BUILD-SNAPSHOT
org.gradle.daemon=false
aetherVersion=1.0.2.v20150114
\ No newline at end of file
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 124f052fbf..30a60b6e43 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.0.3.RELEASE
+ 2.0.3.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 7f828e1a61..182e343e13 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,4 +15,4 @@
#
wiremockVersion=2.18.0
jsonAssertVersion=0.4.13
-verifierVersion=2.0.3.RELEASE
+verifierVersion=2.0.3.BUILD-SNAPSHOT
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 7f828e1a61..182e343e13 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,4 +15,4 @@
#
wiremockVersion=2.18.0
jsonAssertVersion=0.4.13
-verifierVersion=2.0.3.RELEASE
+verifierVersion=2.0.3.BUILD-SNAPSHOT
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 7f828e1a61..182e343e13 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,4 +15,4 @@
#
wiremockVersion=2.18.0
jsonAssertVersion=0.4.13
-verifierVersion=2.0.3.RELEASE
+verifierVersion=2.0.3.BUILD-SNAPSHOT
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 7f828e1a61..182e343e13 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,4 +15,4 @@
#
wiremockVersion=2.18.0
jsonAssertVersion=0.4.13
-verifierVersion=2.0.3.RELEASE
+verifierVersion=2.0.3.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 5a27edf18f..60bd6711ee 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
@@ -6,7 +6,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
@@ -33,7 +33,7 @@
1.7
- 2.0.3.RELEASE
+ 2.0.3.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 a98768b8f8..e807c21ff9 100644
--- a/spring-cloud-contract-tools/spring-cloud-contract-pact/pom.xml
+++ b/spring-cloud-contract-tools/spring-cloud-contract-pact/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tools
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-pact
diff --git a/spring-cloud-contract-verifier/pom.xml b/spring-cloud-contract-verifier/pom.xml
index 9b606c4a3c..af42352e71 100644
--- a/spring-cloud-contract-verifier/pom.xml
+++ b/spring-cloud-contract-verifier/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-verifier
diff --git a/spring-cloud-contract-wiremock/pom.xml b/spring-cloud-contract-wiremock/pom.xml
index ded8a1ee23..aa8506e5ab 100644
--- a/spring-cloud-contract-wiremock/pom.xml
+++ b/spring-cloud-contract-wiremock/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-wiremock
diff --git a/tests/pom.xml b/tests/pom.xml
index 399f3cff50..1cfe38b544 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -7,7 +7,7 @@
org.springframework.cloud
spring-cloud-contract-parent
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
diff --git a/tests/samples-messaging-amqp/pom.xml b/tests/samples-messaging-amqp/pom.xml
index 86201ee070..a03c642556 100644
--- a/tests/samples-messaging-amqp/pom.xml
+++ b/tests/samples-messaging-amqp/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-amqp
diff --git a/tests/samples-messaging-integration/pom.xml b/tests/samples-messaging-integration/pom.xml
index 9eff60e5c0..d8ff79bf18 100644
--- a/tests/samples-messaging-integration/pom.xml
+++ b/tests/samples-messaging-integration/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-integration
diff --git a/tests/samples-messaging-spring/pom.xml b/tests/samples-messaging-spring/pom.xml
index 67692f9d96..0b9b7d75ae 100644
--- a/tests/samples-messaging-spring/pom.xml
+++ b/tests/samples-messaging-spring/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-sample-spring
diff --git a/tests/samples-messaging-stream/pom.xml b/tests/samples-messaging-stream/pom.xml
index f5c4433ae9..96b48d4636 100644
--- a/tests/samples-messaging-stream/pom.xml
+++ b/tests/samples-messaging-stream/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 e668cf9c82..a9c100fe14 100644
--- a/tests/spring-cloud-contract-stub-runner-amqp/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-amqp/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 81e0c27e3b..641b94c263 100644
--- a/tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-boot-eureka/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 3f1156b845..175488356c 100644
--- a/tests/spring-cloud-contract-stub-runner-boot-zookeeper/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-boot-zookeeper/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-boot-zookeeper
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 f37c4a55ed..06e9ee8c68 100644
--- a/tests/spring-cloud-contract-stub-runner-context-path/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-context-path/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 102acc93a4..c5741271b8 100644
--- a/tests/spring-cloud-contract-stub-runner-integration/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-integration/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 b5f34f8afd..64b8bd0330 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
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 c704be16ee..4c0780fe3a 100644
--- a/tests/spring-cloud-contract-stub-runner-moco/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-moco/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.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 8ff98d92ff..53d94346aa 100644
--- a/tests/spring-cloud-contract-stub-runner-stream/pom.xml
+++ b/tests/spring-cloud-contract-stub-runner-stream/pom.xml
@@ -5,7 +5,7 @@
org.springframework.cloud
spring-cloud-contract-tests
- 2.0.3.RELEASE
+ 2.0.3.BUILD-SNAPSHOT
..
spring-cloud-contract-stub-runner-stream