* extend template for the Java JDBC template by SAT SPEC * extend example source scaffold-java-jdbc * review upd * add other SAT tests to the template * review upd * comment non-spec tests * Revert "comment non-spec tests" This reverts commit8c78049fd9. * Revert "add other SAT tests to the template" This reverts commitc15b4dcd87. * review * review * typo * typo * new line
30 lines
1.3 KiB
Groovy
30 lines
1.3 KiB
Groovy
plugins {
|
|
id 'application'
|
|
id 'airbyte-docker'
|
|
id 'airbyte-integration-test-java'
|
|
id 'airbyte-source-acceptance-test'
|
|
}
|
|
|
|
application {
|
|
mainClass = 'io.airbyte.integrations.source.{{dashCase name}}.{{pascalCase name}}Source'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':airbyte-db:db-lib')
|
|
implementation project(':airbyte-integrations:bases:base-java')
|
|
implementation project(':airbyte-protocol:protocol-models')
|
|
implementation project(':airbyte-integrations:connectors:source-jdbc')
|
|
implementation project(':airbyte-integrations:connectors:source-relational-db')
|
|
|
|
//TODO Add jdbc driver import here. Ex: implementation 'com.microsoft.sqlserver:mssql-jdbc:8.4.1.jre14'
|
|
|
|
testImplementation testFixtures(project(':airbyte-integrations:connectors:source-jdbc'))
|
|
|
|
testImplementation 'org.apache.commons:commons-lang3:3.11'
|
|
|
|
integrationTestJavaImplementation project(':airbyte-integrations:connectors:source-{{dashCase name}}')
|
|
integrationTestJavaImplementation project(':airbyte-integrations:bases:standard-source-test')
|
|
|
|
implementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
|
|
integrationTestJavaImplementation files(project(':airbyte-integrations:bases:base-java').airbyteDocker.outputs)
|
|
} |