Bumping versions
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
org.gradle.daemon=false
|
||||
verifierVersion=3.1.0-SNAPSHOT
|
||||
springBootVersion=2.6.0-M2
|
||||
springBootVersion=2.6.0-SNAPSHOT
|
||||
camelVersion=3.11.0
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.0-M2</version>
|
||||
<version>2.6.0-SNAPSHOT</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.0-M2</version>
|
||||
<version>2.6.0-SNAPSHOT</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.0-M2</version>
|
||||
<version>2.6.0-SNAPSHOT</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.6.0-M2</version>
|
||||
<version>2.6.0-SNAPSHOT</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
wiremockVersion=2.30.1
|
||||
jsonAssertVersion=0.6.1
|
||||
verifierVersion=3.1.0-SNAPSHOT
|
||||
bootVersion=2.6.0-M2
|
||||
bootVersion=2.6.0-SNAPSHOT
|
||||
groovyVersion=2.4.17
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
wiremockVersion=2.30.1
|
||||
jsonAssertVersion=0.6.1
|
||||
verifierVersion=3.1.0-SNAPSHOT
|
||||
bootVersion=2.6.0-M2
|
||||
bootVersion=2.6.0-SNAPSHOT
|
||||
groovyVersion=2.4.17
|
||||
|
||||
@@ -28,7 +28,7 @@ import java.util.Collection;
|
||||
public class ContractCollectionAssert<ELEMENT> extends org.assertj.core.api.CollectionAssert<ELEMENT> {
|
||||
|
||||
private final CollectionAssert<ELEMENT> collectionAssert;
|
||||
|
||||
|
||||
public ContractCollectionAssert(Collection<? extends ELEMENT> actual) {
|
||||
super(actual);
|
||||
this.collectionAssert = new CollectionAssert<>(actual);
|
||||
|
||||
@@ -31,7 +31,7 @@ public class SpringCloudContractAssertions extends Assertions {
|
||||
public static <ELEMENT> CollectionAssert<ELEMENT> assertThat(Iterable<? extends ELEMENT> actual) {
|
||||
return new CollectionAssert<>(actual);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Creates a new instance of <code>{@link ContractCollectionAssert}</code>.
|
||||
* @param <ELEMENT> type to assert
|
||||
|
||||
Reference in New Issue
Block a user