- Kinesis binder depends on spring-cloud-aws library which only becomes available after the spring-cloud (2022) release that includes Spring Cloud Stream release. This creates a cycle and thus we cannot include Kinesis binder release as part of the Spring Cloud Stream release train. See this issue for more details: https://github.com/spring-cloud/spring-cloud-stream/issues/2572 - Subsequently, we will remove the source code for Kinesis binder from core SCSt repostiroy and move it into it's own space (as it was before).
23 lines
775 B
XML
23 lines
775 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>spring-cloud-stream-binders</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
<name>binders</name>
|
|
<description>Framework provided binders</description>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-stream-parent</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>kafka-binder</module>
|
|
<module>rabbit-binder</module>
|
|
<!-- <module>kinesis-binder</module>-->
|
|
</modules>
|
|
|
|
</project>
|