* rename airbyte-config module * Automated Commit - Formatting Changes * sanity * update import * update import * update script * update script * update script * update script * Automated Change * Automated Change * Automated Change * Automated Change * update awsdatalake icon * point slash commands to new path * sanity * Automated Commit - Formatting Changes * sanity * Automated Change * Automated Change * sanity --------- Co-authored-by: rodireich <rodireich@users.noreply.github.com>
20 lines
725 B
Handlebars
20 lines
725 B
Handlebars
plugins {
|
|
id 'application'
|
|
id 'airbyte-docker'
|
|
id 'airbyte-integration-test-java'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.destination.{{snakeCase name}}.{{properCase name}}Destination'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':airbyte-config-oss:config-models-oss')
|
|
implementation libs.airbyte.protocol
|
|
implementation project(':airbyte-integrations:bases:base-java')
|
|
implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
|
|
|
|
integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-destination-test')
|
|
integrationTestJavaImplementation project(':airbyte-integrations:connectors:destination-{{dashCase name}}')
|
|
}
|