1
0
mirror of synced 2025-12-20 10:32:35 -05:00
Files
airbyte/airbyte-integrations/connectors/source-postgres/build.gradle
2025-08-12 20:08:32 -07:00

62 lines
1.7 KiB
Groovy

import org.jsonschema2pojo.SourceType
plugins {
id 'airbyte-java-connector'
id 'com.github.eirnym.js2p'
id "io.airbyte.gradle.docker"
id 'airbyte-connector-docker-convention'
}
java {
compileJava {
options.compilerArgs += "-Xlint:-try,-rawtypes,-unchecked"
}
}
airbyteJavaConnector {
cdkVersionRequired = '0.48.14'
features = ['db-sources', 'datastore-postgres']
useLocalCdk = false
}
application {
mainClass = 'io.airbyte.integrations.source.postgres.PostgresSource'
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
}
dependencies {
api "com.google.protobuf:protobuf-java:3.25.5" // for fixing vulnerability of protobuf-java used by Debezium
implementation 'commons-codec:commons-codec:1.16.0'
implementation 'io.debezium:debezium-embedded:3.0.1.Final'
implementation 'io.debezium:debezium-connector-postgres:3.0.1.Final'
implementation 'com.azure:azure-identity:1.15.3'
testFixturesApi 'org.testcontainers:postgresql:1.19.0'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
}
jsonSchema2Pojo {
sourceType = SourceType.YAMLSCHEMA
source = files("${sourceSets.main.output.resourcesDir}/internal_models")
targetDirectory = new File(project.buildDir, 'generated/src/gen/java/')
removeOldOutput = true
targetPackage = 'io.airbyte.integrations.source.postgres.internal.models'
useLongIntegers = true
generateBuilders = true
includeConstructors = false
includeSetters = true
}
compileKotlin {
dependsOn {
generateJsonSchema2Pojo
}
}
tasks.named('sourcesJar').configure {
dependsOn tasks.named('generateJsonSchema2Pojo')
}