Co-authored-by: Dhroov Makwana <pabloescoder@gmail.com> Co-authored-by: Alexandre Girard <alexandre@airbyte.io> Co-authored-by: btkcodedev <btk.codedev@gmail.com> Co-authored-by: Gireesh Sreepathi <gisripa@gmail.com> Co-authored-by: Yue Li <61070669+theyueli@users.noreply.github.com> Co-authored-by: Augustin <augustin@airbyte.io> Co-authored-by: Natik Gadzhi <natik@respawn.io> Co-authored-by: Danylo Jablonski <150933663+DanyloGL@users.noreply.github.com> Co-authored-by: Maxime Carbonneau-Leclerc <3360483+maxi297@users.noreply.github.com> Co-authored-by: Oleksandr Bazarnov <oleksandr.bazarnov@globallogic.com> Co-authored-by: Ben Church <ben@airbyte.io> Co-authored-by: alafanechere <augustin.lafanechere@gmail.com> Co-authored-by: Christo Grabowski <108154848+ChristoGrab@users.noreply.github.com> Co-authored-by: Edward Gao <edward.gao@airbyte.io> Co-authored-by: Catherine Noll <clnoll@users.noreply.github.com> Co-authored-by: Audrey Maldonado <audrey.maldonado@gmail.com> Co-authored-by: Rodi Reich Zilberman <867491+rodireich@users.noreply.github.com> Co-authored-by: Serhii Lazebnyi <serhii.lazebnyi@globallogic.com> Co-authored-by: Serhii Lazebnyi <53845333+lazebnyi@users.noreply.github.com>
38 lines
1.1 KiB
Groovy
38 lines
1.1 KiB
Groovy
plugins {
|
|
id 'airbyte-java-connector'
|
|
}
|
|
|
|
airbyteJavaConnector {
|
|
cdkVersionRequired = '0.36.3'
|
|
features = ['db-sources']
|
|
useLocalCdk = false
|
|
}
|
|
|
|
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']
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.microsoft.sqlserver:mssql-jdbc:12.6.1.jre11'
|
|
implementation 'io.debezium:debezium-embedded:2.6.1.Final'
|
|
implementation 'io.debezium:debezium-connector-sqlserver:2.6.1.Final'
|
|
implementation 'org.codehaus.plexus:plexus-utils:3.4.2'
|
|
|
|
testFixturesImplementation 'org.testcontainers:mssqlserver:1.19.0'
|
|
|
|
testImplementation 'org.awaitility:awaitility:4.2.0'
|
|
testImplementation 'org.hamcrest:hamcrest-all:1.3'
|
|
testImplementation 'org.testcontainers:mssqlserver:1.19.0'
|
|
}
|