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
10 changes: 7 additions & 3 deletions sdks/java/io/contextualtextio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,22 @@

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

description = "Apache Beam :: SDKs :: Java :: Contextual-Text-IO"
ext.summary = "Context-aware Text IO."

dependencies {
compile library.java.vendored_guava_26_0_jre
compile library.java.protobuf_java
compile project(path: ":sdks:java:core", configuration: "shadow")
testCompile project(path: ":sdks:java:core", configuration: "shadowTest")
compile library.java.protobuf_java
permitUnusedDeclared library.java.protobuf_java // BEAM-11761
compile library.java.slf4j_api
compile library.java.vendored_guava_26_0_jre
compile library.java.vendored_grpc_1_26_0

testCompile project(path: ":sdks:java:core", configuration: "shadowTest")
testCompile library.java.guava_testlib
testCompile library.java.junit
testCompile library.java.hamcrest_core
Expand Down