22 lines
470 B
Groovy
22 lines
470 B
Groovy
plugins {
|
|
id 'airbyte-bulk-connector'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.source.mysql.MySqlSource'
|
|
}
|
|
|
|
airbyteBulkConnector {
|
|
core = 'extract'
|
|
toolkits = ['extract-jdbc', 'extract-cdc']
|
|
cdk = '0.226'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.mysql:mysql-connector-j:9.1.0'
|
|
implementation 'io.debezium:debezium-connector-mysql'
|
|
|
|
testImplementation 'org.testcontainers:mysql'
|
|
testImplementation("io.mockk:mockk:1.12.0")
|
|
}
|