forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
source-oracle: adopt CDK 0.20.4 (airbytehq#35225)
- Loading branch information
1 parent
e31aba9
commit b0aac80
Showing
7 changed files
with
9 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 2 additions & 21 deletions
23
airbyte-integrations/connectors/source-oracle/build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,20 @@ | ||
plugins { | ||
id 'application' | ||
id 'airbyte-java-connector' | ||
} | ||
|
||
airbyteJavaConnector { | ||
cdkVersionRequired = '0.13.2' | ||
cdkVersionRequired = '0.20.4' | ||
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") | ||
} | ||
} | ||
|
||
airbyteJavaConnector.addCdkDependencies() | ||
|
||
application { | ||
mainClass = 'io.airbyte.integrations.source.oracle.OracleSource' | ||
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 libs.testcontainers.oracle.xe | ||
testImplementation 'org.testcontainers:oracle-xe:1.19.4' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters