diff options
| author | luccioman <luccioman@users.noreply.github.com> | 2017-08-11 20:50:36 +0200 |
|---|---|---|
| committer | luccioman <luccioman@users.noreply.github.com> | 2017-08-11 20:50:36 +0200 |
| commit | 366ceae35abb3727580faeba9f3a8bdfaa301fd6 (patch) | |
| tree | ad7a67f27faaab312d5f64e63c5995f624341e5c /.classpath | |
| parent | bf72cbffa3582dbab0e403493b5a43f9e1697375 (diff) | |
Fixed missing transitive dependency to commons-collections4-4.1
Dependency required by poi-3.16.
Dependency was not provided in YaCy but already defined on previous poi
versions. This only became problematic since upgrade from poi-3.15 to
poi-3.16 (commit dedc6552d37b5e877258abddac9621f7fe75bf9b). Indeed in
this new poi release, a poi component used in some YaCy parsers code
paths now explicitely needs a class from the commons-collections4
library : org.apache.poi.hpsf.Section uses now
org.apache.commons.collections4.bidimap.TreeBidiMap.
Impacted YaCy parsers : xlsParser, pptParser, docParser.
Issue detected by the folowing JUnit tests failing :
ParserTest.testpptParsers(), ParserTest.testdocParsers(),
xlsParserTest.testParse()
Diffstat (limited to '.classpath')
| -rw-r--r-- | .classpath | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.classpath b/.classpath index 9fc69a61b..6f198aad0 100644 --- a/.classpath +++ b/.classpath @@ -105,5 +105,6 @@ <classpathentry kind="lib" path="lib/jwat-gzip-1.1.0.jar"/> <classpathentry kind="lib" path="lib/jwat-archive-common-1.1.0.jar"/> <classpathentry kind="lib" path="lib/jwat-warc-1.1.0.jar"/> + <classpathentry kind="lib" path="lib/commons-collections4-4.1.jar"/> <classpathentry kind="output" path="gen"/> </classpath> |
