Repository: tika Updated Branches: refs/heads/master c9d508dc1 -> 2caf3da7c
Add missing dependency on tika-test-resources Without this, ContenthandlerExampleTest fails to compile (in Eclipse, at least) Project: http://git-wip-us.apache.org/repos/asf/tika/repo Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/b9d5c225 Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/b9d5c225 Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/b9d5c225 Branch: refs/heads/master Commit: b9d5c22526cc92a08df76520b782de4ca9b5ca86 Parents: c5d4ec6 Author: Ken Krugler <[email protected]> Authored: Sat Feb 6 15:21:04 2016 -0800 Committer: trevorlewis <[email protected]> Committed: Mon Mar 7 11:41:46 2016 -0800 ---------------------------------------------------------------------- tika-example/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tika/blob/b9d5c225/tika-example/pom.xml ---------------------------------------------------------------------- diff --git a/tika-example/pom.xml b/tika-example/pom.xml index ee214b8..7b21a79 100644 --- a/tika-example/pom.xml +++ b/tika-example/pom.xml @@ -111,6 +111,13 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.tika</groupId> + <artifactId>tika-test-resources</artifactId> + <version>${project.version}</version> + <type>test-jar</type> + <scope>test</scope> + </dependency> </dependencies> <description>This module contains examples of how to use Apache Tika.</description>
