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