diff options
| author | Michael Peter Christen <mc@yacy.net> | 2021-03-08 13:39:27 +0100 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2021-03-08 13:39:27 +0100 |
| commit | 8b4394a6c571e85f71b109a4ddbf36001331d8a6 (patch) | |
| tree | bd7ed7f04dc154bc5612c07ac0800a00b03fad1e /build.xml | |
| parent | 3befaaf4f1bcff637b1faa2845c9615ebb934411 (diff) | |
fixes for solr 8.8.1 migration
- replace new guava 30 with older 25 because that is the correct
dependency for solr 8.8.1. The newer one did actually not work!
- index will be crated in a DATA/INDEX/freeworld/SEGMENTS/solr_8_8_1
subfolder. The older solr_6_6 index is not touched but also not
migrated. The index starts with fresh (empty) content.
- Older indexes must be migrated by hand (export/import) so far until a
better solution is found.
- Large schema adoptions for lucene 8.8.1
Diffstat (limited to 'build.xml')
| -rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -184,7 +184,7 @@ <pathelement location="${lib}/common-io-3.3.2.jar" /> <pathelement location="${lib}/common-lang-3.3.2.jar" /> <pathelement location="${lib}/commons-codec-1.14.jar" /> - <pathelement location="${lib}/commons-collections-3.2.2.jar" /> + <pathelement location="${lib}/commons-collections4-4.4.jar" /> <pathelement location="${lib}/commons-compress-1.20.jar" /> <pathelement location="${lib}/commons-fileupload-1.4.jar" /> <pathelement location="${lib}/commons-io-2.7.jar" /> @@ -193,7 +193,7 @@ <pathelement location="${lib}/commons-logging-1.2.jar" /> <pathelement location="${lib}/commons-math3-3.4.1.jar" /> <pathelement location="${lib}/fontbox-2.0.15.jar" /> - <pathelement location="${lib}/guava-30.1-jre.jar" /> + <pathelement location="${lib}/guava-25.1-jre.jar" /> <pathelement location="${lib}/http2-client-9.4.34.v20201102.jar" /> <pathelement location="${lib}/http2-common-9.4.34.v20201102.jar" /> <pathelement location="${lib}/http2-http-client-transport-9.4.34.v20201102.jar" /> |
