16 lines
319 B
Groovy
16 lines
319 B
Groovy
plugins {
|
|
id 'airbyte-docker'
|
|
id 'airbyte-python'
|
|
}
|
|
|
|
airbytePython {
|
|
moduleDirectory 'base_python_test'
|
|
}
|
|
|
|
|
|
dependencies {
|
|
implementation files(project(':airbyte-integrations:bases:base-python').airbyteDocker.outputs)
|
|
}
|
|
|
|
installReqs.dependsOn(":airbyte-integrations:bases:airbyte-protocol:installReqs")
|