awslabs / dynamodb-streams-kinesis-adapter

The Amazon DynamoDB Streams Adapter implements the Amazon Kinesis interface so that your application can use KCL to consume and process data from a DynamoDB stream.
Apache License 2.0
97 stars 37 forks source link

Tightening up AWS SDK dependencies. #2

Closed johnmshields closed 8 years ago

johnmshields commented 9 years ago

The original pom.xml had a dependency on the top-level AWS SDK which meant that it pulled in ALL of the AWS SDK dependencies. A perusal of the code shows there are actually only dependencies on the cloudwatch, dynamodb, and kinesis AWS SDKs.

This update changes the POM dependencies to depend upon the AWS SDK's cloudwatch, dynamodb, and kinesis modules instead of the high-level AWS SDK.

rozhok commented 9 years ago

+1 I have to manually clean up deps on all my projects using excludes which is not very convenient.

schwar commented 8 years ago

Merged. Thanks for the contribution!