forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (35 loc) · 1.33 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import org.jsonschema2pojo.SourceType
plugins {
id 'java-library'
id 'com.github.eirnym.js2p' version '1.0'
}
configurations {
jdbc
}
dependencies {
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'io.kubernetes:client-java-api:10.0.0'
implementation 'io.kubernetes:client-java:10.0.0'
implementation 'io.kubernetes:client-java-extended:10.0.0'
implementation 'io.temporal:temporal-sdk:1.0.4'
implementation 'org.apache.ant:ant:1.10.10'
implementation project(':airbyte-config:models')
implementation project(':airbyte-db')
implementation project(':airbyte-json-validation')
implementation project(':airbyte-protocol:models')
testImplementation 'org.mockito:mockito-inline:2.13.0'
testImplementation 'org.testcontainers:testcontainers:1.14.3'
testImplementation 'org.testcontainers:postgresql:1.15.1'
testImplementation 'org.postgresql:postgresql:42.2.18'
}
jsonSchema2Pojo {
sourceType = SourceType.YAMLSCHEMA
source = files("${sourceSets.main.output.resourcesDir}/workers_models")
targetDirectory = new File(project.buildDir, 'generated/src/gen/java/')
removeOldOutput = true
targetPackage = 'io.airbyte.scheduler.models'
useLongIntegers = true
generateBuilders = true
includeConstructors = false
includeSetters = true
}