Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1077,22 +1077,22 @@ artifactId=${project.name}
/* include dependencies required by runners */
//if (runner?.contains('dataflow')) {
if (runner?.equalsIgnoreCase('dataflow')) {
testCompile project(path: ":beam-runners-google-cloud-dataflow-java", configuration: 'shadowTest')
testCompile it.project(path: ":beam-runners-google-cloud-dataflow-java", configuration: 'shadowTest')
}

if (runner?.equalsIgnoreCase('direct')) {
testCompile project(path: ":beam-runners-direct-java", configuration: 'shadowTest')
testCompile it.project(path: ":beam-runners-direct-java", configuration: 'shadowTest')
}

/* include dependencies required by filesystems */
if (filesystem?.equalsIgnoreCase('hdfs')) {
testCompile project(path: ":beam-sdks-java-io-hadoop-file-system", configuration: 'shadowTest')
shadowTest library.java.hadoop_client
testCompile it.project(path: ":beam-sdks-java-io-hadoop-file-system", configuration: 'shadowTest')
shadowTest project.library.java.hadoop_client
}

/* include dependencies required by AWS S3 */
if (filesystem?.equalsIgnoreCase('s3')) {
testCompile project(path: ":beam-sdks-java-io-amazon-web-services", configuration: 'shadowTest')
testCompile it.project.project(path: ":beam-sdks-java-io-amazon-web-services", configuration: 'shadowTest')
}
}

Expand Down