After this PR all JVM destinations will be on the new non-dagger flow. Note on the failed builds: destination-csv - docker only, which is why the tests are failing. I am going to deprecate this if I cannot convince Junie to fix this for me. destination-local-json - same as destination csv. destination-postgres-strict-encrypt - passing for me locally, looks like a certificate error destination-postgres - passing for me locall destination-oracle - these are failing on container errors - the test containers they are trying to download aren't able to start up destination-oracle-strict-encrypt - same as base oracle destination-starburst-galaxy - actual test failures destination-yellowbrick - actual test failures destination-redis - actual test failures The failed tests mirror master so we aren't adding any new failures here.
23 lines
709 B
Groovy
23 lines
709 B
Groovy
plugins {
|
|
id 'airbyte-java-connector'
|
|
id "io.airbyte.gradle.docker"
|
|
id 'airbyte-connector-docker-convention'
|
|
}
|
|
|
|
airbyteJavaConnector {
|
|
cdkVersionRequired = '0.48.9'
|
|
features = ['db-destinations', 'typing-deduping', 'datastore-postgres']
|
|
useLocalCdk = false
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.destination.postgres.PostgresDestinationStrictEncrypt'
|
|
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':airbyte-integrations:connectors:destination-postgres')
|
|
|
|
integrationTestJavaImplementation testFixtures(project(':airbyte-integrations:connectors:destination-postgres'))
|
|
}
|