From 23a11108fe87f1061670c88a6987a3d9352fcaa6 Mon Sep 17 00:00:00 2001 From: Davin Chia Date: Thu, 5 Jan 2023 11:53:30 -0800 Subject: [PATCH] Add Airbyte public jars mirror. (#21078) Twitter maven is down due to Elon. This jar is only hosted on twitter's maven. We've uploaded a pinned version of this jar to our own public repo. This PR adjusts the build.gradle to consume jars from this public repo. --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 6b1eeff05dd6..90a7ec6fcbe4 100644 --- a/build.gradle +++ b/build.gradle @@ -43,6 +43,9 @@ apply from: "$rootDir/publish-repositories.gradle" repositories { mavenCentral() + maven { + url 'https://airbyte.mycloudrepo.io/public/repositories/airbyte-public-jars/' + } } Properties env = new Properties()