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
12 changes: 10 additions & 2 deletions sdks/java/io/elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,24 @@
*/

plugins { id 'org.apache.beam.module' }
applyJavaNature(automaticModuleName: 'org.apache.beam.sdk.io.elasticsearch')
applyJavaNature(enableStrictDependencies: true, automaticModuleName: 'org.apache.beam.sdk.io.elasticsearch')

description = "Apache Beam :: SDKs :: Java :: IO :: Elasticsearch"
ext.summary = "IO to read and write on Elasticsearch"

dependencies {
compile library.java.vendored_guava_26_0_jre
compile project(path: ":sdks:java:core", configuration: "shadow")
compile library.java.jackson_databind
compile library.java.http_client
compile library.java.http_core
compile library.java.jackson_annotations
permitUnusedDeclared library.java.jackson_annotations // BEAM-11761
compile library.java.jackson_core
compile library.java.jackson_databind
compile library.java.joda_time
compile library.java.slf4j_api
compile "org.apache.httpcomponents:httpasyncclient:4.1.4"
compile "org.apache.httpcomponents:httpcore-nio:4.4.12"
compile "org.elasticsearch.client:elasticsearch-rest-client:7.9.2"
testCompile project(path: ":sdks:java:io:common", configuration: "testRuntime")
}