Skip to content

Commit

Permalink
Load CDK E2ETest Destination w/o tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny-schmidt committed Sep 4, 2024
1 parent 1a9728d commit ad4f11d
Show file tree
Hide file tree
Showing 19 changed files with 360 additions and 798 deletions.
27 changes: 25 additions & 2 deletions airbyte-integrations/connectors/destination-e2e-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
plugins {
id 'application'
id 'airbyte-java-connector'
}

Expand All @@ -9,9 +10,31 @@ airbyteJavaConnector {
}

application {
mainClass = 'io.airbyte.integrations.destination.e2e_test.TestingDestinations'
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
mainClass = 'io.airbyte.integrations.destination.e2e_test.E2EDestination'
//applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']

// Uncomment and replace to run locally
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0', '--add-opens', 'java.base/java.lang=ALL-UNNAMED']
}

// Uncomment to run locally
run {
standardInput = System.in
}

dependencies {
def vBulkCDK = '0.9'
def vMicronaut = '4.3.13'

ksp "io.micronaut:micronaut-inject-kotlin:${vMicronaut}"

//implementation "io.airbyte.bulk-cdk:bulk-cdk-core-base:${vBulkCDK}"
implementation project(":airbyte-cdk:bulk:core:bulk-cdk-core-base")
//implementation "io.airbyte.bulk-cdk:bulk-cdk-core-load:${vBulkCDK}"
implementation project(":airbyte-cdk:bulk:core:bulk-cdk-core-load")

kspTest "io.micronaut:micronaut-inject-kotlin:${vMicronaut}"

testImplementation platform('org.testcontainers:testcontainers-bom:1.19.8')
testImplementation project(":airbyte-cdk:bulk:core:bulk-cdk-core-load")
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit ad4f11d

Please sign in to comment.