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
5 changes: 1 addition & 4 deletions sdks/java/io/tika/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

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

description = "Apache Beam :: SDKs :: Java :: IO :: Tika"
ext.summary = "Tika Input to parse files."
Expand All @@ -27,13 +27,10 @@ def bndlib_version = "1.43.0"

dependencies {
compile library.java.vendored_guava_26_0_jre
compileOnly "biz.aQute:bndlib:$bndlib_version"
compile project(path: ":sdks:java:core", configuration: "shadow")
compile "org.apache.tika:tika-core:$tika_version"
testCompile project(path: ":sdks:java:core", configuration: "shadowTest")
testCompile library.java.junit
testCompile library.java.hamcrest_core
testCompile library.java.hamcrest_library
testCompile "org.apache.tika:tika-parsers:$tika_version"
testCompileOnly "biz.aQute:bndlib:$bndlib_version"
testRuntimeOnly project(path: ":runners:direct-java", configuration: "shadow")
Expand Down