diff --git a/spring-cloud-contract-maven-plugin/complex-content.html b/spring-cloud-contract-maven-plugin/complex-content.html
index 6648c87199..cf45d00729 100644
--- a/spring-cloud-contract-maven-plugin/complex-content.html
+++ b/spring-cloud-contract-maven-plugin/complex-content.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin –
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-maven-plugin/complex.html b/spring-cloud-contract-maven-plugin/complex.html
index 91232f1b8a..ee637d04ba 100644
--- a/spring-cloud-contract-maven-plugin/complex.html
+++ b/spring-cloud-contract-maven-plugin/complex.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin –
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-maven-plugin/index.html b/spring-cloud-contract-maven-plugin/index.html
index 295ae76ffc..f7dd211e1e 100644
--- a/spring-cloud-contract-maven-plugin/index.html
+++ b/spring-cloud-contract-maven-plugin/index.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin –
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-maven-plugin/junit.html b/spring-cloud-contract-maven-plugin/junit.html
index fad13ef62c..ea4af86993 100644
--- a/spring-cloud-contract-maven-plugin/junit.html
+++ b/spring-cloud-contract-maven-plugin/junit.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin –
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-maven-plugin/sitemap.html b/spring-cloud-contract-maven-plugin/sitemap.html
index 52f56e9ef4..6edc62d0a2 100644
--- a/spring-cloud-contract-maven-plugin/sitemap.html
+++ b/spring-cloud-contract-maven-plugin/sitemap.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin – Sitemap
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-maven-plugin/spock.html b/spring-cloud-contract-maven-plugin/spock.html
index 54bc97bf02..103e8a35e5 100644
--- a/spring-cloud-contract-maven-plugin/spock.html
+++ b/spring-cloud-contract-maven-plugin/spock.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin –
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract-maven-plugin/usage.html b/spring-cloud-contract-maven-plugin/usage.html
index d7ac03728e..8506c579ef 100644
--- a/spring-cloud-contract-maven-plugin/usage.html
+++ b/spring-cloud-contract-maven-plugin/usage.html
@@ -1,13 +1,13 @@
-
+
Spring Cloud Contract Verifier Maven Plugin –
@@ -104,7 +104,7 @@
- - Last Published: 2017-01-11
+
- Last Published: 2017-01-12
|
- Version: 1.1.0.BUILD-SNAPSHOT
diff --git a/spring-cloud-contract.html b/spring-cloud-contract.html
index adf0e27e81..55925210ad 100644
--- a/spring-cloud-contract.html
+++ b/spring-cloud-contract.html
@@ -6982,9 +6982,9 @@ assertions and the one from matchers with an
and section):
assertThat(parsedJson.read("$.time", String.class)).matches("(2[0-3]|[01][0-9]):([0-5][0-9]):([0-5][0-9])");
assertThat((Object) parsedJson.read("$.valueWithTypeMatch")).isInstanceOf(java.lang.String.class);
assertThat((Object) parsedJson.read("$.valueWithMin")).isInstanceOf(java.util.List.class);
- assertThat(parsedJson.read("$.valueWithMin", java.util.Collection.class).size()).isLessThanOrEqualTo(1);
+ assertThat(parsedJson.read("$.valueWithMin", java.util.Collection.class).size()).isGreaterThanOrEqualTo(1);
assertThat((Object) parsedJson.read("$.valueWithMax")).isInstanceOf(java.util.List.class);
- assertThat(parsedJson.read("$.valueWithMax", java.util.Collection.class).size()).isGreaterThanOrEqualTo(3);
+ assertThat(parsedJson.read("$.valueWithMax", java.util.Collection.class).size()).isLessThanOrEqualTo(3);
assertThat((Object) parsedJson.read("$.valueWithMinMax")).isInstanceOf(java.util.List.class);
assertThat(parsedJson.read("$.valueWithMinMax", java.util.Collection.class).size()).isStrictlyBetween(1, 3);