Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 5c27dfa

Browse files
Sylvain Marcadalartembilan
authored andcommitted
Add KCL/KPL message handler and channel adapter
relates to spring-cloud/spring-cloud-stream-binder-aws-kinesis#65, spring-cloud/spring-cloud-stream-binder-aws-kinesis#53, #99 Add UUID consumer generation fixed author tag upgraded kcl version to 2.0.5 fixed source file encoding - added setter for checkpoint interval - change application name (concatenate consumer group and stream name) fixed javadoc take into account requested changes from spring-integration fixed code style issues take into account requested changes from spring-integration fixed code style issues take into account requested changes from spring-integration
1 parent 0995564 commit 5c27dfa

File tree

3 files changed

+693
-1
lines changed

3 files changed

+693
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ ext {
3737
log4jVersion = '2.11.1'
3838
springCloudAwsVersion = '2.1.0.BUILD-SNAPSHOT'
3939
springIntegrationVersion = '5.1.0.RELEASE'
40+
kinesisClientVersion = '2.0.5'
41+
kinesisProducerVersion = '0.12.11'
4042

4143
idPrefix = 'aws'
4244

@@ -93,7 +95,8 @@ dependencies {
9395
compile('org.springframework.integration:spring-integration-file', optional)
9496
compile('org.springframework.integration:spring-integration-http', optional)
9597

96-
// compile('com.amazonaws:amazon-kinesis-client:1.9.1', optional)
98+
compile("software.amazon.kinesis:amazon-kinesis-client:$kinesisClientVersion", optional)
99+
compile("com.amazonaws:amazon-kinesis-producer:$kinesisProducerVersion", optional)
97100

98101
compile('com.amazonaws:aws-java-sdk-kinesis', optional)
99102
compile('com.amazonaws:aws-java-sdk-dynamodb', optional)

0 commit comments

Comments
 (0)