plugins { id 'airbyte-java-connector' id "io.airbyte.gradle.docker" id 'airbyte-connector-docker-convention' } airbyteJavaConnector { cdkVersionRequired = '0.20.4' features = ['db-sources'] useLocalCdk = false } application { mainClass = 'io.airbyte.integrations.source.cockroachdb.CockroachDbSource' applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0'] } dependencies { implementation 'org.postgresql:postgresql:42.6.0' testImplementation 'org.testcontainers:cockroachdb:1.19.4' }