27 lines
691 B
Groovy
27 lines
691 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'airbyte-java-connector'
|
|
}
|
|
|
|
airbyteJavaConnector {
|
|
cdkVersionRequired = '0.7.7'
|
|
features = ['db-sources']
|
|
useLocalCdk = false
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.source.scaffold-java-jdbc.ScaffoldJavaJdbcSource'
|
|
}
|
|
|
|
dependencies {
|
|
|
|
//TODO Add jdbc driver import here. Ex: implementation 'com.microsoft.sqlserver:mssql-jdbc:8.4.1.jre14'
|
|
|
|
testImplementation 'org.apache.commons:commons-lang3:3.11'
|
|
testImplementation libs.testcontainers.jdbc
|
|
|
|
integrationTestJavaImplementation project(':airbyte-integrations:connectors:source-scaffold-java-jdbc')
|
|
|
|
testFixturesImplementation libs.testcontainers.jdbc
|
|
}
|