forked from airbytehq/airbyte-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update oss to use gradle-plugins (#7593)
Co-authored-by: Jose Pefaur <[email protected]> Co-authored-by: Chandler Prall <[email protected]>
- Loading branch information
1 parent
acfe713
commit e79bbc1
Showing
91 changed files
with
1,186 additions
and
1,741 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
plugins { | ||
id 'java-library' | ||
id "io.airbyte.gradle.jvm.lib" | ||
id "io.airbyte.gradle.publish" | ||
} | ||
|
||
dependencies { | ||
api libs.segment.java.analytics | ||
api libs.micronaut.http | ||
|
||
implementation libs.bundles.jackson | ||
implementation libs.guava | ||
|
||
implementation project(':airbyte-commons') | ||
implementation project(':airbyte-config:config-models') | ||
implementation project(':airbyte-config:config-persistence') | ||
implementation project(':airbyte-json-validation') | ||
} | ||
|
||
Task publishArtifactsTask = getPublishArtifactsTask("$rootProject.ext.version", project) | ||
testRuntimeOnly libs.junit.jupiter.engine | ||
testImplementation libs.bundles.junit | ||
testImplementation libs.assertj.core | ||
testImplementation libs.junit.pioneer | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,5 @@ | ||
ARG JDK_IMAGE=airbyte/airbyte-base-java-image:2.0.3 | ||
FROM ${JDK_IMAGE} | ||
|
||
ARG VERSION=0.50.7 | ||
|
||
ENV APPLICATION airbyte-bootloader | ||
ENV VERSION ${VERSION} | ||
|
||
WORKDIR /app | ||
|
||
ADD bin/${APPLICATION}-${VERSION}.tar /app | ||
|
||
|
||
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-${VERSION}/bin/${APPLICATION}"] | ||
ADD airbyte-app.tar /app | ||
ENTRYPOINT ["/bin/bash", "-c", "airbyte-app/bin/airbyte-bootloader"] |
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 was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.