1
0
mirror of synced 2025-12-22 19:38:29 -05:00
Files
airbyte/airbyte-integrations/connectors-performance/source-harness/build.gradle
2024-04-03 10:43:05 -07:00

26 lines
819 B
Groovy

plugins {
id 'application'
}
application {
mainClass = 'io.airbyte.integrations.source_performance.Main'
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
}
dependencies {
implementation project(':airbyte-cdk:java:airbyte-cdk:airbyte-cdk-dependencies')
implementation 'io.fabric8:kubernetes-client:5.12.2'
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'io.airbyte:airbyte-commons-worker:0.42.0'
implementation 'io.airbyte.airbyte-config:config-models:0.42.0'
implementation 'com.datadoghq:datadog-api-client:2.16.0'
}
//This is only needed because we're using some very old libraries from airbyte-commons that were not packaged correctly
java {
compileJava {
options.compilerArgs.remove("-Werror")
}
}