18 lines
709 B
Groovy
18 lines
709 B
Groovy
plugins {
|
|
// Makes building the docker image a dependency of Gradle's "build" command. This way you could run your entire build inside a docker image
|
|
// via ./gradlew :airbyte-integrations:connectors:source-stock-ticker-api:build
|
|
id 'airbyte-docker'
|
|
id 'airbyte-standard-source-test-file'
|
|
}
|
|
|
|
airbyteStandardSourceTestFile {
|
|
// All these input paths must live inside this connector's directory (or subdirectories)
|
|
configPath = "secrets/valid_config.json"
|
|
configuredCatalogPath = "fullrefresh_configured_catalog.json"
|
|
specPath = "spec.json"
|
|
}
|
|
|
|
dependencies {
|
|
implementation files(project(':airbyte-integrations:bases:base-standard-source-test-file').airbyteDocker.outputs)
|
|
}
|