File: 0007-missing-hamcrest-dependency.patch

package info (click to toggle)
lucene4.10 4.10.4%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 81,468 kB
  • sloc: java: 499,919; xml: 17,224; python: 1,956; perl: 1,177; cpp: 330; javascript: 188; jsp: 125; makefile: 16; sh: 10
file content (14 lines) | stat: -rw-r--r-- 938 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Add an explicit dependency on hamcrest to avoid a build failure in test-framework (why?)
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/822843
--- a/test-framework/ivy.xml
+++ b/test-framework/ivy.xml
@@ -32,6 +32,7 @@
     <dependency org="org.apache.ant" name="ant" rev="${/org.apache.ant/ant}" conf="compile"/>
 
     <dependency org="junit" name="junit" rev="${/junit/junit}" conf="compile,junit4-stdalone"/>
+    <dependency org="org.hamcrest" name="hamcrest" rev="debian" conf="compile,junit4-stdalone"/>
     <dependency org="com.carrotsearch.randomizedtesting" name="junit4-ant" rev="${/com.carrotsearch.randomizedtesting/junit4-ant}" conf="compile,junit4-stdalone"/>
     <dependency org="com.carrotsearch.randomizedtesting" name="randomizedtesting-runner" rev="${/com.carrotsearch.randomizedtesting/randomizedtesting-runner}" conf="compile,junit4-stdalone"/>