Revert "Hardcoding reactor dependencies"

This reverts commit 50d69cb74c.
This commit is contained in:
Marcin Grzejszczak
2020-08-25 10:38:34 +02:00
parent a6b6671624
commit 00d6154c60
4 changed files with 1 additions and 22 deletions

View File

@@ -45,7 +45,6 @@
<jgit.version>5.5.1.201910021850-r</jgit.version>
<javax-inject.version>1</javax-inject.version>
<mockito.version>3.4.6</mockito.version>
<reactor.version>2020.0.0-SNAPSHOT</reactor.version>
<junit-platform.version>1.3.2</junit-platform.version>
<junit-vintage.version>5.6.2</junit-vintage.version>
@@ -111,14 +110,6 @@
</exclusion>
</exclusions>
</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>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-spring-boot-starter</artifactId>

View File

@@ -61,8 +61,6 @@ 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,5 +1,4 @@
org.gradle.daemon=false
verifierVersion=3.0.0-SNAPSHOT
BOM_VERSION=2020.0.0-SNAPSHOT
bootVersion=2.4.0-SNAPSHOT
reactorBomVersion=2020.0.0-SNAPSHOT
bootVersion=2.4.0-SNAPSHOT

View File

@@ -24,7 +24,6 @@
<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>
@@ -79,14 +78,6 @@
<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[] -->