Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions airbyte-integrations/connectors/source-mssql/README.md

This file was deleted.

This file was deleted.

45 changes: 18 additions & 27 deletions airbyte-integrations/connectors/source-mssql/build.gradle
Original file line number Diff line number Diff line change
@@ -1,43 +1,34 @@
plugins {
id 'airbyte-java-connector'
id 'airbyte-bulk-connector'
id "io.airbyte.gradle.docker"
id 'airbyte-connector-docker-convention'
}

airbyteJavaConnector {
cdkVersionRequired = '0.48.18'
features = ['db-sources']
useLocalCdk = false
application {
mainClass = 'io.airbyte.integrations.source.mssql.MsSqlServerSource'
}

java {
// TODO: rewrite code to avoid javac warnings in the first place
compileJava {
options.compilerArgs += "-Xlint:-try,-rawtypes"
}
compileTestFixturesJava {
options.compilerArgs += "-Xlint:-this-escape"
}
}

application {
mainClass = 'io.airbyte.integrations.source.mssql.MssqlSource'
applicationDefaultJvmArgs = ['-XX:+ExitOnOutOfMemoryError', '-XX:MaxRAMPercentage=75.0']
airbyteBulkConnector {
core = 'extract'
toolkits = ['extract-jdbc', 'extract-cdc']
}

dependencies {
implementation 'com.microsoft.sqlserver:mssql-jdbc:12.10.0.jre11'
implementation 'io.debezium:debezium-embedded:3.0.7.Final'
implementation 'io.debezium:debezium-connector-sqlserver:3.0.7.Final'
implementation 'com.microsoft.sqlserver:mssql-jdbc:12.10.1.jre11'
implementation 'com.azure:azure-identity:1.15.3'
implementation 'io.debezium:debezium-embedded:3.3.0.Final'
implementation 'io.debezium:debezium-connector-sqlserver:3.3.0.Final'
implementation 'org.codehaus.plexus:plexus-utils:3.4.2'

testFixturesImplementation 'org.testcontainers:mssqlserver:1.19.0'
api 'org.apache.commons:commons-lang3:3.18.0'
implementation 'org.apache.commons:commons-lang3:3.18.0'

testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testFixturesImplementation 'org.testcontainers:mssqlserver:1.19.0'
testImplementation 'org.testcontainers:mssqlserver:1.19.0'
}

compileKotlin {

testImplementation 'com.zaxxer:HikariCP:5.1.0'
testFixturesImplementation testFixtures(project(":airbyte-cdk:bulk:toolkits:bulk-cdk-toolkit-legacy-source-integration-tests"))
testImplementation testFixtures(project(":airbyte-cdk:bulk:toolkits:bulk-cdk-toolkit-legacy-source-integration-tests"))
testImplementation("io.mockk:mockk:1.12.0")
api 'com.google.guava:guava:33.4.0-jre'
}
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
testExecutionConcurrency=-1
JunitMethodExecutionTimeout=5 m
testExecutionConcurrency=1
JunitMethodExecutionTimeout=5m
cdkVersion=0.1.49

This file was deleted.

This file was deleted.

Loading
Loading