Wiile running connector build receiving error:
Execution failed for task ':octavia-cli:installLocalReqs'.
> Python call failed: .venv/bin/python -m pip install .[dev,tests]
SUB_BUILD=PLATFORM ./gradlew clean build was succesful. Full report at https://scans.gradle.com/s/5fssxedklxcke/console-log?anchor=961&page=1
My build file is:
plugins {
id 'application'
id 'airbyte-docker'
id 'airbyte-integration-test-java'
}
application {
mainClass = 'io.airbyte.integrations.destination.impala.ImpalaDestination'
// enable when profiling
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
}
dependencies {
implementation files('libs/ImpalaJDBC.jar')
implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
implementation project(':airbyte-db:db-lib')
implementation project(':airbyte-config:config-models')
implementation project(':airbyte-protocol:protocol-models')
implementation project(':airbyte-integrations:bases:base-java')
implementation project(':airbyte-integrations:connectors:destination-jdbc')
implementation project(':airbyte-integrations:connectors:destination-s3')
implementation 'com.zaxxer:HikariCP:5.0.1'
implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2'
//this is a configuration to make mockito work with final classes
testImplementation 'org.mockito:mockito-inline:2.13.0'
integrationTestJavaImplementation 'org.apache.commons:commons-lang3:3.11'
integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-destination-test')
integrationTestJavaImplementation project(':airbyte-integrations:connectors:destination-impala')
}