Reputation: 1120
I am trying to extend local CDF server.
I am using the following dependencies:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dataflow-dependencies</artifactId>
<version>${spring-cloud-dataflow.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>${spring-cloud-task.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-dataflow-server-local</artifactId>
</dependency>
</dependencies>
I can't figure out what are the latest compatible versions of:
Where can I see what versions are compatible with Spring Boot 1.5.3.RELEASE
?
Upvotes: 0
Views: 113
Reputation: 5651
We aren't compatible with 1.5.3 yet. The recent 1.2 RC1 release is at 1.5.2 - see release notes.
The 1.2 GA is planned to be on the same release as well.
Upvotes: 1