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)
21 lines
629 B
Groovy
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'))
|
|
}
|