1
0
mirror of synced 2025-12-30 21:02:43 -05:00
Files
airbyte/airbyte-integrations/bases/base-java/build.gradle
Rodi Reich Zilberman 0bab1756b8 Rename airbyte-config module (#24885)
* rename airbyte-config module

* Automated Commit - Formatting Changes

* sanity

* update import

* update import

* update script

* update script

* update script

* update script

* Automated Change

* Automated Change

* Automated Change

* Automated Change

* update awsdatalake icon

* point slash commands to new path

* sanity

* Automated Commit - Formatting Changes

* sanity

* Automated Change

* Automated Change

* sanity

---------

Co-authored-by: rodireich <rodireich@users.noreply.github.com>
2023-04-06 10:47:30 -07:00

31 lines
1.2 KiB
Groovy

plugins {
id 'java-library'
id 'airbyte-docker'
}
dependencies {
implementation libs.airbyte.protocol
implementation project(':airbyte-config-oss:config-models-oss')
implementation project(':airbyte-commons-cli')
implementation project(':airbyte-json-validation')
implementation 'commons-cli:commons-cli:1.4'
implementation 'net.i2p.crypto:eddsa:0.3.0'
implementation 'org.apache.sshd:sshd-mina:2.8.0'
// bouncycastle is pinned to version-match the transitive dependency from kubernetes client-java
// because a version conflict causes "parameter object not a ECParameterSpec" on ssh tunnel initiation
implementation 'org.bouncycastle:bcprov-jdk15on:1.66'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.66'
implementation 'org.bouncycastle:bctls-jdk15on:1.66'
implementation libs.jackson.annotations
implementation libs.connectors.testcontainers
implementation libs.connectors.testcontainers.jdbc
implementation libs.bundles.datadog
implementation files(project(':airbyte-integrations:bases:base').airbyteDocker.outputs)
testImplementation 'commons-lang:commons-lang:2.6'
implementation group: 'org.apache.logging.log4j', name: 'log4j-layout-template-json', version: '2.17.2'
}