Hardcoding reactor dependencies
This commit is contained in:
1
pom.xml
1
pom.xml
@@ -111,6 +111,7 @@
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<!-- TODO: This should not be set manually -->
|
||||
<dependency>
|
||||
<groupId>io.projectreactor</groupId>
|
||||
<artifactId>reactor-bom</artifactId>
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
@@ -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[] -->
|
||||
|
||||
Reference in New Issue
Block a user