23 lines
575 B
Groovy
23 lines
575 B
Groovy
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.clickhouse.ClickHouseSource'
|
|
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.clickhouse:clickhouse-jdbc:0.3.2-patch10:all'
|
|
|
|
testImplementation 'org.testcontainers:clickhouse:1.19.4'
|
|
}
|