Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: yue.li@airbyte.io <yue.li@airbyte.io>
36 lines
964 B
Groovy
36 lines
964 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'airbyte-java-connector'
|
|
id "io.airbyte.gradle.docker"
|
|
id 'airbyte-connector-docker-convention'
|
|
}
|
|
|
|
airbyteJavaConnector {
|
|
cdkVersionRequired = '0.13.2'
|
|
features = ['db-sources']
|
|
useLocalCdk = false
|
|
}
|
|
|
|
//remove once upgrading the CDK version to 0.4.x or later
|
|
java {
|
|
compileTestJava {
|
|
options.compilerArgs.remove("-Werror")
|
|
}
|
|
compileJava {
|
|
options.compilerArgs.remove("-Werror")
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.source.bigquery.BigQuerySource'
|
|
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.cloud:google-cloud-bigquery:2.23.2'
|
|
implementation 'org.apache.commons:commons-lang3:3.11'
|
|
|
|
testImplementation 'org.apache.commons:commons-lang3:3.11'
|
|
// integrationTestJavaImplementation project(':airbyte-integrations:connectors:source-bigquery')
|
|
}
|