After this PR all JVM destinations will be on the new non-dagger flow. Note on the failed builds: destination-csv - docker only, which is why the tests are failing. I am going to deprecate this if I cannot convince Junie to fix this for me. destination-local-json - same as destination csv. destination-postgres-strict-encrypt - passing for me locally, looks like a certificate error destination-postgres - passing for me locall destination-oracle - these are failing on container errors - the test containers they are trying to download aren't able to start up destination-oracle-strict-encrypt - same as base oracle destination-starburst-galaxy - actual test failures destination-yellowbrick - actual test failures destination-redis - actual test failures The failed tests mirror master so we aren't adding any new failures here.
39 lines
1.1 KiB
Groovy
39 lines
1.1 KiB
Groovy
plugins {
|
|
id 'application'
|
|
id 'airbyte-java-connector'
|
|
id "io.airbyte.gradle.docker"
|
|
id 'airbyte-connector-docker-convention'
|
|
}
|
|
|
|
airbyteJavaConnector {
|
|
cdkVersionRequired = '0.29.10'
|
|
features = ['db-destinations', 's3-destinations', 'typing-deduping']
|
|
useLocalCdk = false
|
|
}
|
|
|
|
//remove once upgrading the CDK version to 0.4.x or later
|
|
java {
|
|
compileJava {
|
|
options.compilerArgs.remove("-Werror")
|
|
}
|
|
}
|
|
|
|
airbyteJavaConnector.addCdkDependencies()
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.destination.oracle.OracleDestination'
|
|
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
|
|
}
|
|
|
|
dependencies {
|
|
|
|
// required so that log4j uses a standard xml parser instead of an oracle one (that gets pulled in by the oracle driver)
|
|
implementation group: 'xerces', name: 'xercesImpl', version: '2.12.1'
|
|
|
|
|
|
implementation "com.oracle.database.jdbc:ojdbc8-production:19.7.0.0"
|
|
|
|
testImplementation 'org.apache.commons:commons-lang3:3.11'
|
|
testImplementation 'org.testcontainers:oracle-xe:1.19.0'
|
|
}
|