Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix multiple log bindings #14801

Merged
merged 24 commits into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b8eed07
Fix multiply log bindings
DoNotPanicUA Jul 18, 2022
18ea743
Exclude slf4j-reload4j
DoNotPanicUA Jul 19, 2022
195cac2
Exclude slf4j-log4j12 for debezium
DoNotPanicUA Jul 19, 2022
e4fa72e
Merge branch 'master' into aleonets/11778-fix-mult-log-error
subodh1810 Jul 25, 2022
d3993b6
Merge branch 'master' into aleonets/11778-fix-mult-log-error
grishick Jul 27, 2022
8572d8e
Merge branch 'master' into aleonets/11778-fix-mult-log-error
DoNotPanicUA Aug 1, 2022
dd7070f
Increase version for debezium related sources and json converter rela…
DoNotPanicUA Aug 2, 2022
b514d10
Merge branch 'master' into aleonets/11778-fix-mult-log-error
DoNotPanicUA Aug 2, 2022
0f694a8
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 2, 2022
8b1980e
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 2, 2022
19aebf0
Merge branch 'aleonets/11778-fix-mult-log-error' of https://github.co…
octavia-squidington-iii Aug 2, 2022
ff82def
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 2, 2022
d8cc431
Merge branch 'aleonets/11778-fix-mult-log-error' of https://github.co…
octavia-squidington-iii Aug 2, 2022
185721f
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 2, 2022
ad9904a
Merge branch 'aleonets/11778-fix-mult-log-error' of https://github.co…
octavia-squidington-iii Aug 2, 2022
d7f1b3c
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 2, 2022
9d6c74d
Merge branch 'aleonets/11778-fix-mult-log-error' of https://github.co…
octavia-squidington-iii Aug 2, 2022
8d7ce91
Merge branch 'master' into aleonets/11778-fix-mult-log-error
edgao Aug 3, 2022
c97ff62
rebump bigquery versions
edgao Aug 3, 2022
0d55586
mark destinations s3, gcs as unpublishd
edgao Aug 3, 2022
db6b864
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 3, 2022
f74b60c
auto-bump connector version [ci skip]
octavia-squidington-iii Aug 3, 2022
0752b5e
Merge branch 'aleonets/11778-fix-mult-log-error' of https://github.co…
octavia-squidington-iii Aug 3, 2022
74f79dc
Merge branch 'master' into aleonets/11778-fix-mult-log-error
edgao Aug 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/debezium-v1-4-2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation project(':airbyte-db:db-lib')

implementation 'io.debezium:debezium-api:1.4.2.Final'
implementation 'io.debezium:debezium-embedded:1.4.2.Final'
implementation ('io.debezium:debezium-embedded:1.4.2.Final') { exclude group: 'org.slf4j', module: 'slf4j-log4j12' }
implementation 'io.debezium:debezium-connector-mysql:1.4.2.Final'
implementation 'io.debezium:debezium-connector-postgres:1.4.2.Final'
implementation 'io.debezium:debezium-connector-sqlserver:1.4.2.Final'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
implementation project(':airbyte-protocol:protocol-models')
implementation project(':airbyte-integrations:connectors:destination-s3')
implementation project(':airbyte-integrations:connectors:destination-gcs')
implementation group: 'com.github.airbytehq', name: 'json-avro-converter', version: '1.0.1'
implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'}

integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-destination-test')
integrationTestJavaImplementation files(project(':airbyte-integrations:bases:base-normalization').airbyteDocker.outputs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,17 @@ dependencies {
implementation group: 'com.databricks', name: 'databricks-jdbc', version: '2.6.25'

// parquet
implementation group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.3.3'
implementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.3.3'
implementation group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '3.3.3'
implementation group: 'org.apache.parquet', name: 'parquet-avro', version: '1.12.0'
implementation group: 'com.github.airbytehq', name: 'json-avro-converter', version: '1.0.1'
implementation ('org.apache.hadoop:hadoop-common:3.3.3') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}
implementation ('org.apache.hadoop:hadoop-aws:3.3.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'}
implementation ('org.apache.hadoop:hadoop-mapreduce-client-core:3.3.3') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}
implementation ('org.apache.parquet:parquet-avro:1.12.0') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'}
implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'}

integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-destination-test')
integrationTestJavaImplementation project(':airbyte-integrations:connectors:destination-databricks')
Expand Down
16 changes: 11 additions & 5 deletions airbyte-integrations/connectors/destination-gcs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,17 @@ dependencies {
implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2'

// parquet
implementation group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.3.3'
implementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.3.3'
implementation group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '3.3.3'
implementation group: 'org.apache.parquet', name: 'parquet-avro', version: '1.12.0'
implementation group: 'com.github.airbytehq', name: 'json-avro-converter', version: '1.0.1'
implementation ('org.apache.hadoop:hadoop-common:3.3.3') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}
implementation ('org.apache.hadoop:hadoop-aws:3.3.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'}
implementation ('org.apache.hadoop:hadoop-mapreduce-client-core:3.3.3') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}
implementation ('org.apache.parquet:parquet-avro:1.12.0') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'}
implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'}

testImplementation 'org.apache.commons:commons-lang3:3.11'
testImplementation 'org.xerial.snappy:snappy-java:1.1.8.4'
Expand Down
16 changes: 11 additions & 5 deletions airbyte-integrations/connectors/destination-s3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,17 @@ dependencies {
implementation 'com.github.alexmojaki:s3-stream-upload:2.2.2'

// parquet
implementation group: 'org.apache.hadoop', name: 'hadoop-common', version: '3.3.3'
implementation group: 'org.apache.hadoop', name: 'hadoop-aws', version: '3.3.3'
implementation group: 'org.apache.hadoop', name: 'hadoop-mapreduce-client-core', version: '3.3.3'
implementation group: 'org.apache.parquet', name: 'parquet-avro', version: '1.12.3'
implementation group: 'com.github.airbytehq', name: 'json-avro-converter', version: '1.0.1'
implementation ('org.apache.hadoop:hadoop-common:3.3.3') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}
implementation ('org.apache.hadoop:hadoop-aws:3.3.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'}
implementation ('org.apache.hadoop:hadoop-mapreduce-client-core:3.3.3') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'org.slf4j', module: 'slf4j-reload4j'
}
implementation ('org.apache.parquet:parquet-avro:1.12.3') { exclude group: 'org.slf4j', module: 'slf4j-log4j12'}
implementation ('com.github.airbytehq:json-avro-converter:1.0.1') { exclude group: 'ch.qos.logback', module: 'logback-classic'}

testImplementation 'org.apache.commons:commons-lang3:3.11'
testImplementation 'org.xerial.snappy:snappy-java:1.1.8.4'
Expand Down