Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: yue.li@airbyte.io <yue.li@airbyte.io>
29 lines
765 B
Groovy
29 lines
765 B
Groovy
plugins {
|
|
id 'airbyte-java-connector'
|
|
id "io.airbyte.gradle.docker"
|
|
id 'airbyte-connector-docker-convention'
|
|
}
|
|
|
|
airbyteJavaConnector {
|
|
cdkVersionRequired = '0.20.4'
|
|
features = ['db-sources']
|
|
useLocalCdk = false
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.source.dynamodb.DynamodbSource'
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation platform('software.amazon.awssdk:bom:2.18.1')
|
|
// https://mvnrepository.com/artifact/software.amazon.awssdk/dynamodb
|
|
implementation 'software.amazon.awssdk:dynamodb'
|
|
implementation 'software.amazon.awssdk:sts'
|
|
|
|
testImplementation 'org.skyscreamer:jsonassert:1.5.1'
|
|
testImplementation "org.assertj:assertj-core:3.23.1"
|
|
testImplementation "org.testcontainers:localstack:1.19.4"
|
|
|
|
}
|