-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (36 loc) · 1.12 KB
/
build.gradle
File metadata and controls
42 lines (36 loc) · 1.12 KB
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
plugins {
id 'airbyte-docker'
id 'airbyte-standard-source-test-file'
id 'base' // ?
id 'com.github.node-gradle.node' version '2.2.4'
}
node {
download = true
version = "14.11.0"
}
npm_run_build {
inputs.files fileTree('public')
inputs.files fileTree('src')
inputs.file 'package.json'
inputs.file 'package-lock.json'
outputs.dir project.buildDir
}
assemble.dependsOn npm_run_build
//task test(type: NpmTask) {
// dependsOn assemble
//
// args = ['run', 'test', '--', '--watchAll=false']
// inputs.files fileTree('src')
// inputs.file 'package.json'
// inputs.file 'package-lock.json'
//}
airbyteStandardSourceTestFile {
// All these input paths must live inside this connector's directory (or subdirectories)
configPath = "secrets/config.json"
configuredCatalogPath = "sample_files/fullrefresh_configured_catalog.json"
specPath = "spec.json"
}
dependencies {
implementation files(project(':airbyte-integrations:bases:base-standard-source-test-file').airbyteDocker.outputs)
implementation files(project(':airbyte-integrations:bases:base').airbyteDocker.outputs)
}