1
0
mirror of synced 2025-12-25 02:09:19 -05:00
Files
airbyte/airbyte-integrations/connectors/destination-postgres-strict-encrypt/build.gradle
Stephane Geneix 34e4fe0134 destination-postgres: implement refreshes (#41954)
implementing refreshes for destination-postgres

we're bumping the CDK version to the latest, and modifying a whole lot of jsonl files for tests (in both regular and strict-encrypt)
2024-07-22 13:59:33 -07:00

21 lines
629 B
Groovy

plugins {
id 'airbyte-java-connector'
}
airbyteJavaConnector {
cdkVersionRequired = '0.42.0'
features = ['db-destinations', 'typing-deduping', 'datastore-postgres']
useLocalCdk = true
}
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'))
}