Remove binder dependency from spring-cloud-task-stream

- Spring Cloud Task Stream shouldn't depend on a specific binder implementation; hence removing redis binder from dependencies
   - The binder dependency needs to come from the task application
 - Also removed few other unwanted dependencies

This resolves #120

Added spring-cloud-task-core back as a dependency.

This will be needed when https://github.com/spring-cloud/spring-cloud-task/pull/117 is merged.
This commit is contained in:
Ilayaperumal Gopinathan
2016-04-12 17:09:17 +05:30
committed by Glenn Renfro
parent bdd73632eb
commit 5b72400b06

View File

@@ -6,7 +6,7 @@
<artifactId>spring-cloud-task-stream</artifactId>
<packaging>jar</packaging>
<name>Spring Cloud Task Stream </name>
<description>Allows Tasks to be a part of a stream</description>
<description>Allows a Task to be a part of a stream</description>
<parent>
<groupId>org.springframework.cloud</groupId>
@@ -26,20 +26,9 @@
<version>1.0.0.BUILD-SNAPSHOT</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-test</artifactId>
<version>4.2.2.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -57,10 +46,5 @@
<version>1.0.0.BUILD-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-redis</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
</dependency>
</dependencies>
</project>