Hardcoding reactor dependencies

This commit is contained in:
Marcin Grzejszczak
2020-08-24 13:43:09 +02:00
parent 8f12bc2ec0
commit 50d69cb74c
4 changed files with 14 additions and 1 deletions

View File

@@ -111,6 +111,7 @@
</exclusion>
</exclusions>
</dependency>
<!-- TODO: This should not be set manually -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-bom</artifactId>

View File

@@ -61,6 +61,8 @@ apply plugin: 'maven-publish'
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:$BOM_VERSION"
// TODO: We shouldn't be setting this
mavenBom "io.projectreactor:reactor-bom:$reactorBomVersion"
}
}

View File

@@ -1,4 +1,5 @@
org.gradle.daemon=false
verifierVersion=3.0.0-SNAPSHOT
BOM_VERSION=2020.0.0-SNAPSHOT
bootVersion=2.4.0-SNAPSHOT
bootVersion=2.4.0-SNAPSHOT
reactorBomVersion=2020.0.0-SNAPSHOT

View File

@@ -24,6 +24,7 @@
<spring-cloud-contract.version>3.0.0-SNAPSHOT
</spring-cloud-contract.version>
<spring-cloud-release.version>2020.0.0-SNAPSHOT</spring-cloud-release.version>
<reactor.version>2020.0.0-SNAPSHOT</reactor.version>
</properties>
<dependencies>
@@ -78,6 +79,14 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- TODO: This should not be set manually -->
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-bom</artifactId>
<version>${reactor.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!-- end::contract_bom[] -->