Repository: tika Updated Branches: refs/heads/2.x 2b3cce22c -> 96886cd79
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/96886cd7 Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/96886cd7 Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/96886cd7 Branch: refs/heads/2.x Commit: 96886cd791c4ade8c5bfce7e44a44c57b3320f77 Parents: 2b3cce2 Author: Ken Krugler <[email protected]> Authored: Sat Feb 6 15:21:04 2016 -0800 Committer: Ken Krugler <[email protected]> Committed: Sat Feb 6 15:21:04 2016 -0800 ---------------------------------------------------------------------- tika-example/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tika/blob/96886cd7/tika-example/pom.xml ---------------------------------------------------------------------- diff --git a/tika-example/pom.xml b/tika-example/pom.xml index f0ef63f..7acc517 100644 --- a/tika-example/pom.xml +++ b/tika-example/pom.xml @@ -104,6 +104,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>
