update to solr-8.5.0

This commit is contained in:
sthen 2020-03-19 19:19:23 +00:00
parent a2b16e2d96
commit 4867a559bd
4 changed files with 203 additions and 205 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.18 2020/01/15 16:45:13 sthen Exp $
# $OpenBSD: Makefile,v 1.19 2020/03/19 19:19:23 sthen Exp $
COMMENT= full-text search engine based on Lucene
V= 8.4.1
V= 8.5.0
DISTNAME= solr-$V
EXTRACT_SUFX= .tgz

View File

@ -1,2 +1,2 @@
SHA256 (solr-8.4.1.tgz) = 7Dnh4CSy43QFFJ3kHjnodaOb8RpT9QbQfZa0e40qQwE=
SIZE (solr-8.4.1.tgz) = 186857366
SHA256 (solr-8.5.0.tgz) = nlRxGtCqYOlyPSzesgzw0h7iq5+gBI7FnctfnZTcYd0=
SIZE (solr-8.5.0.tgz) = 190484008

View File

@ -1,4 +1,4 @@
$OpenBSD: patch-bin_solr,v 1.9 2020/01/15 16:45:13 sthen Exp $
$OpenBSD: patch-bin_solr,v 1.10 2020/03/19 19:19:23 sthen Exp $
Index: bin/solr
--- bin/solr.orig
@ -12,33 +12,19 @@ Index: bin/solr
fi
if [ -z "$SOLR_STOP_WAIT" ]; then
@@ -2214,14 +2214,12 @@ function start_solr() {
echo "RNG might not work properly. To check for the amount of available entropy, use 'cat /proc/sys/kernel/random/entropy_avail'."
@@ -2236,13 +2236,13 @@ function start_solr() {
echo ""
fi
- # no lsof on cygwin though
- if hash lsof 2>/dev/null ; then # hash returns true if lsof is on the path
# no lsof on cygwin though
- if lsof -v 2>&1 | grep -q revision; then
+ if true; then
echo -n "Waiting up to $SOLR_STOP_WAIT seconds to see Solr running on port $SOLR_PORT"
# Launch in a subshell to show the spinner
(loops=0
while true
do
- running=`lsof -PniTCP:$SOLR_PORT -sTCP:LISTEN`
+ running=`fstat|awk "/internet stream tcp.*:$SOLR_PORT\$/ { print $3 }"`
- running=$(lsof -t -PniTCP:$SOLR_PORT -sTCP:LISTEN)
+ running=$(fstat|awk "/internet stream tcp.*:$SOLR_PORT\$/ { print $3 }")
if [ -z "$running" ]; then
slept=$((loops * 2))
if [ $slept -lt $SOLR_STOP_WAIT ]; then
@@ -2239,13 +2237,6 @@ function start_solr() {
fi
done) &
spinner $!
- else
- echo -e "NOTE: Please install lsof as this script needs it to determine if Solr is listening on port $SOLR_PORT."
- sleep 10
- SOLR_PID=`ps auxww | grep start\.jar | grep -w "\-Djetty\.port=$SOLR_PORT" | grep -v grep | awk '{print $2}' | sort -r`
- echo -e "\nStarted Solr server on port $SOLR_PORT (pid=$SOLR_PID). Happy searching!\n"
- return;
- fi
fi
}

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.13 2019/12/30 13:55:48 sthen Exp $
@comment $OpenBSD: PLIST,v 1.14 2020/03/19 19:19:23 sthen Exp $
@newgroup _solr:801
@newuser _solr:801:_solr:daemon:solr user:/nonexistent:/sbin/nologin
@extraunexec rm -rf ${LOCALSTATEDIR}/db/solr/*
@ -23,6 +23,7 @@ share/solr/bin/
@comment share/solr/bin/install_solr_service.sh
share/solr/bin/oom_solr.sh
share/solr/bin/post
share/solr/bin/postlogs
share/solr/bin/solr
@comment share/solr/bin/solr.cmd
@comment share/solr/bin/solr.in.cmd
@ -50,8 +51,8 @@ share/solr/contrib/clustering/lib/
share/solr/contrib/clustering/lib/attributes-binder-1.3.3.jar
share/solr/contrib/clustering/lib/carrot2-guava-18.0.jar
share/solr/contrib/clustering/lib/carrot2-mini-3.16.0.jar
share/solr/contrib/clustering/lib/jackson-annotations-2.10.0.jar
share/solr/contrib/clustering/lib/jackson-databind-2.10.0.jar
share/solr/contrib/clustering/lib/jackson-annotations-2.10.1.jar
share/solr/contrib/clustering/lib/jackson-databind-2.10.1.jar
share/solr/contrib/clustering/lib/simple-xml-safe-2.7.1.jar
share/solr/contrib/dataimporthandler/
share/solr/contrib/dataimporthandler-extras/
@ -63,54 +64,56 @@ share/solr/contrib/dataimporthandler/README.txt
share/solr/contrib/extraction/
share/solr/contrib/extraction/README.txt
share/solr/contrib/extraction/lib/
share/solr/contrib/extraction/lib/apache-mime4j-core-0.8.2.jar
share/solr/contrib/extraction/lib/apache-mime4j-dom-0.8.2.jar
share/solr/contrib/extraction/lib/apache-mime4j-core-0.8.3.jar
share/solr/contrib/extraction/lib/apache-mime4j-dom-0.8.3.jar
share/solr/contrib/extraction/lib/aspectjrt-1.8.0.jar
share/solr/contrib/extraction/lib/bcmail-jdk15on-1.60.jar
share/solr/contrib/extraction/lib/bcpkix-jdk15on-1.60.jar
share/solr/contrib/extraction/lib/bcprov-jdk15on-1.60.jar
share/solr/contrib/extraction/lib/bcmail-jdk15on-1.64.jar
share/solr/contrib/extraction/lib/bcpkix-jdk15on-1.64.jar
share/solr/contrib/extraction/lib/bcprov-jdk15on-1.64.jar
share/solr/contrib/extraction/lib/boilerpipe-1.1.0.jar
share/solr/contrib/extraction/lib/commons-collections4-4.2.jar
share/solr/contrib/extraction/lib/commons-compress-1.18.jar
share/solr/contrib/extraction/lib/curvesapi-1.04.jar
share/solr/contrib/extraction/lib/commons-compress-1.19.jar
share/solr/contrib/extraction/lib/commons-csv-1.7.jar
share/solr/contrib/extraction/lib/curvesapi-1.06.jar
share/solr/contrib/extraction/lib/dec-0.1.2.jar
share/solr/contrib/extraction/lib/fontbox-2.0.12.jar
share/solr/contrib/extraction/lib/fontbox-2.0.17.jar
share/solr/contrib/extraction/lib/icu4j-62.1.jar
share/solr/contrib/extraction/lib/isoparser-1.1.22.jar
share/solr/contrib/extraction/lib/jackcess-2.1.12.jar
share/solr/contrib/extraction/lib/jackcess-encrypt-2.1.4.jar
share/solr/contrib/extraction/lib/jackcess-3.0.1.jar
share/solr/contrib/extraction/lib/jackcess-encrypt-3.0.0.jar
share/solr/contrib/extraction/lib/java-libpst-0.8.1.jar
share/solr/contrib/extraction/lib/jdom2-2.0.6.jar
share/solr/contrib/extraction/lib/jempbox-1.8.16.jar
share/solr/contrib/extraction/lib/jmatio-1.5.jar
share/solr/contrib/extraction/lib/juniversalchardet-1.0.3.jar
share/solr/contrib/extraction/lib/metadata-extractor-2.11.0.jar
share/solr/contrib/extraction/lib/parso-2.0.9.jar
share/solr/contrib/extraction/lib/pdfbox-2.0.12.jar
share/solr/contrib/extraction/lib/pdfbox-tools-2.0.12.jar
share/solr/contrib/extraction/lib/poi-4.0.0.jar
share/solr/contrib/extraction/lib/poi-ooxml-4.0.0.jar
share/solr/contrib/extraction/lib/poi-ooxml-schemas-4.0.0.jar
share/solr/contrib/extraction/lib/poi-scratchpad-4.0.0.jar
share/solr/contrib/extraction/lib/rome-1.5.1.jar
share/solr/contrib/extraction/lib/rome-utils-1.5.1.jar
share/solr/contrib/extraction/lib/parso-2.0.11.jar
share/solr/contrib/extraction/lib/pdfbox-2.0.17.jar
share/solr/contrib/extraction/lib/pdfbox-tools-2.0.17.jar
share/solr/contrib/extraction/lib/poi-4.1.1.jar
share/solr/contrib/extraction/lib/poi-ooxml-4.1.1.jar
share/solr/contrib/extraction/lib/poi-ooxml-schemas-4.1.1.jar
share/solr/contrib/extraction/lib/poi-scratchpad-4.1.1.jar
share/solr/contrib/extraction/lib/rome-1.12.2.jar
share/solr/contrib/extraction/lib/rome-utils-1.12.2.jar
share/solr/contrib/extraction/lib/tagsoup-1.2.1.jar
share/solr/contrib/extraction/lib/tika-core-1.19.1.jar
share/solr/contrib/extraction/lib/tika-java7-1.19.1.jar
share/solr/contrib/extraction/lib/tika-parsers-1.19.1.jar
share/solr/contrib/extraction/lib/tika-xmp-1.19.1.jar
share/solr/contrib/extraction/lib/tika-core-1.23.jar
share/solr/contrib/extraction/lib/tika-java7-1.23.jar
share/solr/contrib/extraction/lib/tika-parsers-1.23.jar
share/solr/contrib/extraction/lib/tika-xmp-1.23.jar
share/solr/contrib/extraction/lib/vorbis-java-core-0.8.jar
share/solr/contrib/extraction/lib/vorbis-java-tika-0.8.jar
share/solr/contrib/extraction/lib/xercesImpl-2.9.1.jar
share/solr/contrib/extraction/lib/xmlbeans-3.0.1.jar
share/solr/contrib/extraction/lib/xercesImpl-2.12.0.jar
share/solr/contrib/extraction/lib/xml-apis-1.4.01.jar
share/solr/contrib/extraction/lib/xmlbeans-3.1.0.jar
share/solr/contrib/extraction/lib/xmpcore-5.1.3.jar
share/solr/contrib/extraction/lib/xz-1.8.jar
share/solr/contrib/jaegertracer-configurator/
share/solr/contrib/jaegertracer-configurator/README.txt
share/solr/contrib/jaegertracer-configurator/lib/
share/solr/contrib/jaegertracer-configurator/lib/jaeger-core-0.35.5.jar
share/solr/contrib/jaegertracer-configurator/lib/jaeger-thrift-0.35.5.jar
share/solr/contrib/jaegertracer-configurator/lib/libthrift-0.12.0.jar
share/solr/contrib/jaegertracer-configurator/lib/jaeger-core-1.1.0.jar
share/solr/contrib/jaegertracer-configurator/lib/jaeger-thrift-1.1.0.jar
share/solr/contrib/jaegertracer-configurator/lib/libthrift-0.13.0.jar
share/solr/contrib/langid/
share/solr/contrib/langid/README.txt
share/solr/contrib/langid/lib/
@ -129,9 +132,9 @@ share/solr/contrib/prometheus-exporter/conf/grafana-solr-dashboard.json
share/solr/contrib/prometheus-exporter/conf/solr-exporter-config.xml
share/solr/contrib/prometheus-exporter/lib/
share/solr/contrib/prometheus-exporter/lib/argparse4j-0.8.1.jar
share/solr/contrib/prometheus-exporter/lib/jackson-annotations-2.10.0.jar
share/solr/contrib/prometheus-exporter/lib/jackson-core-2.10.0.jar
share/solr/contrib/prometheus-exporter/lib/jackson-databind-2.10.0.jar
share/solr/contrib/prometheus-exporter/lib/jackson-annotations-2.10.1.jar
share/solr/contrib/prometheus-exporter/lib/jackson-core-2.10.1.jar
share/solr/contrib/prometheus-exporter/lib/jackson-databind-2.10.1.jar
share/solr/contrib/prometheus-exporter/lib/jackson-jq-0.0.8.jar
share/solr/contrib/prometheus-exporter/lib/log4j-api-2.11.2.jar
share/solr/contrib/prometheus-exporter/lib/log4j-core-2.11.2.jar
@ -144,7 +147,7 @@ share/solr/contrib/prometheus-exporter/lucene-libs/
share/solr/contrib/prometheus-exporter/lucene-libs/lucene-analyzers-common-${V}.jar
share/solr/contrib/velocity/
share/solr/contrib/velocity/lib/
share/solr/contrib/velocity/lib/commons-lang3-3.8.1.jar
share/solr/contrib/velocity/lib/commons-lang3-3.9.jar
share/solr/contrib/velocity/lib/velocity-engine-core-2.0.jar
share/solr/contrib/velocity/lib/velocity-tools-generic-3.0.jar
share/solr/contrib/velocity/lib/velocity-tools-view-3.0.jar
@ -165,22 +168,22 @@ share/solr/dist/solr-solrj-${V}.jar
share/solr/dist/solr-test-framework-${V}.jar
share/solr/dist/solr-velocity-${V}.jar
share/solr/dist/solrj-lib/
share/solr/dist/solrj-lib/commons-io-2.5.jar
share/solr/dist/solrj-lib/commons-io-2.6.jar
share/solr/dist/solrj-lib/commons-math3-3.6.1.jar
share/solr/dist/solrj-lib/http2-client-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/http2-common-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/http2-hpack-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/http2-http-client-transport-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/httpclient-4.5.6.jar
share/solr/dist/solrj-lib/httpcore-4.4.10.jar
share/solr/dist/solrj-lib/httpmime-4.5.6.jar
share/solr/dist/solrj-lib/http2-client-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/http2-common-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/http2-hpack-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/http2-http-client-transport-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/httpclient-4.5.10.jar
share/solr/dist/solrj-lib/httpcore-4.4.12.jar
share/solr/dist/solrj-lib/httpmime-4.5.10.jar
share/solr/dist/solrj-lib/jcl-over-slf4j-1.7.24.jar
share/solr/dist/solrj-lib/jetty-alpn-client-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/jetty-alpn-java-client-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/jetty-client-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/jetty-http-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/jetty-io-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/jetty-util-9.4.19.v20190610.jar
share/solr/dist/solrj-lib/jetty-alpn-client-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/jetty-alpn-java-client-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/jetty-client-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/jetty-http-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/jetty-io-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/jetty-util-9.4.24.v20191120.jar
share/solr/dist/solrj-lib/netty-buffer-4.1.29.Final.jar
share/solr/dist/solrj-lib/netty-codec-4.1.29.Final.jar
share/solr/dist/solrj-lib/netty-common-4.1.29.Final.jar
@ -557,10 +560,10 @@ share/solr/licenses/ant-NOTICE.txt
share/solr/licenses/antlr4-runtime-4.5.1-1.jar.sha1
share/solr/licenses/antlr4-runtime-LICENSE-BSD.txt
share/solr/licenses/antlr4-runtime-NOTICE.txt
share/solr/licenses/apache-mime4j-core-0.8.2.jar.sha1
share/solr/licenses/apache-mime4j-core-0.8.3.jar.sha1
share/solr/licenses/apache-mime4j-core-LICENSE-ASL.txt
share/solr/licenses/apache-mime4j-core-NOTICE.txt
share/solr/licenses/apache-mime4j-dom-0.8.2.jar.sha1
share/solr/licenses/apache-mime4j-dom-0.8.3.jar.sha1
share/solr/licenses/apache-mime4j-dom-LICENSE-ASL.txt
share/solr/licenses/apache-mime4j-dom-NOTICE.txt
share/solr/licenses/argparse4j-0.8.1.jar.sha1
@ -569,11 +572,11 @@ share/solr/licenses/argparse4j-NOTICE.txt
share/solr/licenses/asciidoctor-ant-1.6.2.jar.sha1
share/solr/licenses/asciidoctor-ant-LICENSE-ASL.txt
share/solr/licenses/asciidoctor-ant-NOTICE.txt
share/solr/licenses/asm-5.1.jar.sha1
share/solr/licenses/asm-7.2.jar.sha1
share/solr/licenses/asm-LICENSE-BSD.txt
share/solr/licenses/asm-LICENSE-BSD_LIKE.txt
share/solr/licenses/asm-NOTICE.txt
share/solr/licenses/asm-commons-5.1.jar.sha1
share/solr/licenses/asm-commons-7.2.jar.sha1
share/solr/licenses/asm-commons-LICENSE-BSD_LIKE.txt
share/solr/licenses/asm-commons-NOTICE.txt
share/solr/licenses/aspectjrt-1.8.0.jar.sha1
@ -586,13 +589,13 @@ share/solr/licenses/avatica-core-LICENSE-ASL.txt
share/solr/licenses/avatica-core-NOTICE.txt
share/solr/licenses/bcmail-LICENSE-BSD_LIKE.txt
share/solr/licenses/bcmail-NOTICE.txt
share/solr/licenses/bcmail-jdk15on-1.60.jar.sha1
share/solr/licenses/bcpkix-jdk15on-1.60.jar.sha1
share/solr/licenses/bcmail-jdk15on-1.64.jar.sha1
share/solr/licenses/bcpkix-jdk15on-1.64.jar.sha1
share/solr/licenses/bcpkix-jdk15on-LICENSE-BSD_LIKE.txt
share/solr/licenses/bcpkix-jdk15on-NOTICE.txt
share/solr/licenses/bcprov-LICENSE-BSD_LIKE.txt
share/solr/licenses/bcprov-NOTICE.txt
share/solr/licenses/bcprov-jdk15on-1.60.jar.sha1
share/solr/licenses/bcprov-jdk15on-1.64.jar.sha1
share/solr/licenses/boilerpipe-1.1.0.jar.sha1
share/solr/licenses/boilerpipe-LICENSE-ASL.txt
share/solr/licenses/boilerpipe-NOTICE.txt
@ -617,7 +620,7 @@ share/solr/licenses/carrot2-mini-NOTICE.txt
share/solr/licenses/commons-cli-1.2.jar.sha1
share/solr/licenses/commons-cli-LICENSE-ASL.txt
share/solr/licenses/commons-cli-NOTICE.txt
share/solr/licenses/commons-codec-1.11.jar.sha1
share/solr/licenses/commons-codec-1.13.jar.sha1
share/solr/licenses/commons-codec-LICENSE-ASL.txt
share/solr/licenses/commons-codec-NOTICE.txt
share/solr/licenses/commons-collections-3.2.2.jar.sha1
@ -629,7 +632,7 @@ share/solr/licenses/commons-collections4-NOTICE.txt
share/solr/licenses/commons-compiler-3.0.9.jar.sha1
share/solr/licenses/commons-compiler-LICENSE-BSD.txt
share/solr/licenses/commons-compiler-NOTICE.txt
share/solr/licenses/commons-compress-1.18.jar.sha1
share/solr/licenses/commons-compress-1.19.jar.sha1
share/solr/licenses/commons-compress-LICENSE-ASL.txt
share/solr/licenses/commons-compress-NOTICE.txt
share/solr/licenses/commons-configuration-LICENSE-ASL.txt
@ -637,6 +640,9 @@ share/solr/licenses/commons-configuration-NOTICE.txt
share/solr/licenses/commons-configuration2-2.1.1.jar.sha1
share/solr/licenses/commons-configuration2-LICENSE-ASL.txt
share/solr/licenses/commons-configuration2-NOTICE.txt
share/solr/licenses/commons-csv-1.7.jar.sha1
share/solr/licenses/commons-csv-LICENSE-ASL.txt
share/solr/licenses/commons-csv-NOTICE.txt
share/solr/licenses/commons-digester-LICENSE-ASL.txt
share/solr/licenses/commons-digester-NOTICE.txt
share/solr/licenses/commons-exec-1.3.jar.sha1
@ -645,10 +651,10 @@ share/solr/licenses/commons-exec-NOTICE.txt
share/solr/licenses/commons-fileupload-1.3.3.jar.sha1
share/solr/licenses/commons-fileupload-LICENSE-ASL.txt
share/solr/licenses/commons-fileupload-NOTICE.txt
share/solr/licenses/commons-io-2.5.jar.sha1
share/solr/licenses/commons-io-2.6.jar.sha1
share/solr/licenses/commons-io-LICENSE-ASL.txt
share/solr/licenses/commons-io-NOTICE.txt
share/solr/licenses/commons-lang3-3.8.1.jar.sha1
share/solr/licenses/commons-lang3-3.9.jar.sha1
share/solr/licenses/commons-lang3-LICENSE-ASL.txt
share/solr/licenses/commons-lang3-NOTICE.txt
share/solr/licenses/commons-logging-1.1.3.jar.sha1
@ -669,7 +675,7 @@ share/solr/licenses/curator-framework-NOTICE.txt
share/solr/licenses/curator-recipes-2.13.0.jar.sha1
share/solr/licenses/curator-recipes-LICENSE-ASL.txt
share/solr/licenses/curator-recipes-NOTICE.txt
share/solr/licenses/curvesapi-1.04.jar.sha1
share/solr/licenses/curvesapi-1.06.jar.sha1
share/solr/licenses/curvesapi-LICENSE-BSD_LIKE.txt
share/solr/licenses/curvesapi-NOTICE.txt
share/solr/licenses/dec-0.1.2.jar.sha1
@ -684,7 +690,7 @@ share/solr/licenses/disruptor-NOTICE.txt
share/solr/licenses/eigenbase-properties-1.1.5.jar.sha1
share/solr/licenses/eigenbase-properties-LICENSE-ASL.txt
share/solr/licenses/eigenbase-properties-NOTICE.txt
share/solr/licenses/fontbox-2.0.12.jar.sha1
share/solr/licenses/fontbox-2.0.17.jar.sha1
share/solr/licenses/fontbox-LICENSE-ASL.txt
share/solr/licenses/fontbox-NOTICE.txt
share/solr/licenses/gimap-1.5.1.jar.sha1
@ -731,28 +737,28 @@ share/solr/licenses/hsqldb-NOTICE.txt
share/solr/licenses/htrace-core4-4.1.0-incubating.jar.sha1
share/solr/licenses/htrace-core4-LICENSE-ASL.txt
share/solr/licenses/htrace-core4-NOTICE.txt
share/solr/licenses/http2-client-9.4.19.v20190610.jar.sha1
share/solr/licenses/http2-client-9.4.24.v20191120.jar.sha1
share/solr/licenses/http2-client-LICENSE-ASL.txt
share/solr/licenses/http2-client-NOTICE.txt
share/solr/licenses/http2-common-9.4.19.v20190610.jar.sha1
share/solr/licenses/http2-common-9.4.24.v20191120.jar.sha1
share/solr/licenses/http2-common-LICENSE-ASL.txt
share/solr/licenses/http2-common-NOTICE.txt
share/solr/licenses/http2-hpack-9.4.19.v20190610.jar.sha1
share/solr/licenses/http2-hpack-9.4.24.v20191120.jar.sha1
share/solr/licenses/http2-hpack-LICENSE-ASL.txt
share/solr/licenses/http2-hpack-NOTICE.txt
share/solr/licenses/http2-http-client-transport-9.4.19.v20190610.jar.sha1
share/solr/licenses/http2-http-client-transport-9.4.24.v20191120.jar.sha1
share/solr/licenses/http2-http-client-transport-LICENSE-ASL.txt
share/solr/licenses/http2-http-client-transport-NOTICE.txt
share/solr/licenses/http2-server-9.4.19.v20190610.jar.sha1
share/solr/licenses/http2-server-9.4.24.v20191120.jar.sha1
share/solr/licenses/http2-server-LICENSE-ASL.txt
share/solr/licenses/http2-server-NOTICE.txt
share/solr/licenses/httpclient-4.5.6.jar.sha1
share/solr/licenses/httpclient-4.5.10.jar.sha1
share/solr/licenses/httpclient-LICENSE-ASL.txt
share/solr/licenses/httpclient-NOTICE.txt
share/solr/licenses/httpcore-4.4.10.jar.sha1
share/solr/licenses/httpcore-4.4.12.jar.sha1
share/solr/licenses/httpcore-LICENSE-ASL.txt
share/solr/licenses/httpcore-NOTICE.txt
share/solr/licenses/httpmime-4.5.6.jar.sha1
share/solr/licenses/httpmime-4.5.10.jar.sha1
share/solr/licenses/httpmime-LICENSE-ASL.txt
share/solr/licenses/httpmime-NOTICE.txt
share/solr/licenses/icu4j-62.1.jar.sha1
@ -761,24 +767,24 @@ share/solr/licenses/icu4j-NOTICE.txt
share/solr/licenses/isoparser-1.1.22.jar.sha1
share/solr/licenses/isoparser-LICENSE-ASL.txt
share/solr/licenses/isoparser-NOTICE.txt
share/solr/licenses/jackcess-2.1.12.jar.sha1
share/solr/licenses/jackcess-3.0.1.jar.sha1
share/solr/licenses/jackcess-LICENSE-ASL.txt
share/solr/licenses/jackcess-NOTICE.txt
share/solr/licenses/jackcess-encrypt-2.1.4.jar.sha1
share/solr/licenses/jackcess-encrypt-3.0.0.jar.sha1
share/solr/licenses/jackcess-encrypt-LICENSE-ASL.txt
share/solr/licenses/jackcess-encrypt-NOTICE.txt
share/solr/licenses/jackson-annotations-2.10.0.jar.sha1
share/solr/licenses/jackson-annotations-2.10.1.jar.sha1
share/solr/licenses/jackson-annotations-LICENSE-ASL.txt
share/solr/licenses/jackson-annotations-NOTICE.txt
share/solr/licenses/jackson-core-2.10.0.jar.sha1
share/solr/licenses/jackson-core-2.10.1.jar.sha1
share/solr/licenses/jackson-core-LICENSE-ASL.txt
share/solr/licenses/jackson-core-NOTICE.txt
share/solr/licenses/jackson-core-asl-LICENSE-ASL.txt
share/solr/licenses/jackson-core-asl-NOTICE.txt
share/solr/licenses/jackson-databind-2.10.0.jar.sha1
share/solr/licenses/jackson-databind-2.10.1.jar.sha1
share/solr/licenses/jackson-databind-LICENSE-ASL.txt
share/solr/licenses/jackson-databind-NOTICE.txt
share/solr/licenses/jackson-dataformat-smile-2.10.0.jar.sha1
share/solr/licenses/jackson-dataformat-smile-2.10.1.jar.sha1
share/solr/licenses/jackson-dataformat-smile-LICENSE-ASL.txt
share/solr/licenses/jackson-dataformat-smile-NOTICE.txt
share/solr/licenses/jackson-jq-0.0.8.jar.sha1
@ -786,10 +792,10 @@ share/solr/licenses/jackson-jq-LICENSE-ASL.txt
share/solr/licenses/jackson-jq-NOTICE.txt
share/solr/licenses/jackson-mapper-asl-LICENSE-ASL.txt
share/solr/licenses/jackson-mapper-asl-NOTICE.txt
share/solr/licenses/jaeger-core-0.35.5.jar.sha1
share/solr/licenses/jaeger-core-1.1.0.jar.sha1
share/solr/licenses/jaeger-core-LICENSE-ASL.txt
share/solr/licenses/jaeger-core-NOTICE.txt
share/solr/licenses/jaeger-thrift-0.35.5.jar.sha1
share/solr/licenses/jaeger-thrift-1.1.0.jar.sha1
share/solr/licenses/jaeger-thrift-LICENSE-ASL.txt
share/solr/licenses/jaeger-thrift-NOTICE.txt
share/solr/licenses/janino-3.0.9.jar.sha1
@ -822,24 +828,24 @@ share/solr/licenses/jersey-servlet-1.19.jar.sha1
share/solr/licenses/jersey-servlet-LICENSE-CDDL.txt
share/solr/licenses/jetty-LICENSE-ASL.txt
share/solr/licenses/jetty-NOTICE.txt
share/solr/licenses/jetty-alpn-client-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-alpn-java-client-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-alpn-java-server-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-alpn-server-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-client-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-continuation-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-deploy-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-http-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-io-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-jmx-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-rewrite-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-security-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-server-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-servlet-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-servlets-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-util-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-webapp-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-xml-9.4.19.v20190610.jar.sha1
share/solr/licenses/jetty-alpn-client-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-alpn-java-client-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-alpn-java-server-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-alpn-server-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-client-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-continuation-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-deploy-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-http-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-io-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-jmx-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-rewrite-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-security-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-server-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-servlet-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-servlets-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-util-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-webapp-9.4.24.v20191120.jar.sha1
share/solr/licenses/jetty-xml-9.4.24.v20191120.jar.sha1
share/solr/licenses/jmatio-1.5.jar.sha1
share/solr/licenses/jmatio-LICENSE-BSD.txt
share/solr/licenses/jmatio-NOTICE.txt
@ -852,7 +858,7 @@ share/solr/licenses/json-path-NOTICE.txt
share/solr/licenses/jsonic-1.2.7.jar.sha1
share/solr/licenses/jsonic-LICENSE-ASL.txt
share/solr/licenses/jsonic-NOTICE.txt
share/solr/licenses/jsoup-1.11.3.jar.sha1
share/solr/licenses/jsoup-1.12.1.jar.sha1
share/solr/licenses/jsoup-LICENSE-MIT.txt
share/solr/licenses/jul-to-slf4j-1.7.24.jar.sha1
share/solr/licenses/jul-to-slf4j-LICENSE-MIT.txt
@ -911,7 +917,7 @@ share/solr/licenses/kerby-util-NOTICE.txt
share/solr/licenses/langdetect-1.1-20120112.jar.sha1
share/solr/licenses/langdetect-LICENSE-ASL.txt
share/solr/licenses/langdetect-NOTICE.txt
share/solr/licenses/libthrift-0.12.0.jar.sha1
share/solr/licenses/libthrift-0.13.0.jar.sha1
share/solr/licenses/libthrift-LICENSE-ASL.txt
share/solr/licenses/libthrift-NOTICE.txt
share/solr/licenses/log4j-1.2-api-2.11.2.jar.sha1
@ -931,21 +937,21 @@ share/solr/licenses/log4j-web-LICENSE-ASL.txt
share/solr/licenses/log4j-web-NOTICE.txt
share/solr/licenses/metadata-extractor-2.11.0.jar.sha1
share/solr/licenses/metadata-extractor-LICENSE-PD.txt
share/solr/licenses/metrics-core-4.0.5.jar.sha1
share/solr/licenses/metrics-core-4.1.2.jar.sha1
share/solr/licenses/metrics-core-LICENSE-ASL.txt
share/solr/licenses/metrics-core-NOTICE.txt
share/solr/licenses/metrics-graphite-4.0.5.jar.sha1
share/solr/licenses/metrics-graphite-4.1.2.jar.sha1
share/solr/licenses/metrics-graphite-LICENSE-ASL.txt
share/solr/licenses/metrics-graphite-NOTICE.txt
share/solr/licenses/metrics-jetty-LICENSE-ASL.txt
share/solr/licenses/metrics-jetty-NOTICE.txt
share/solr/licenses/metrics-jetty9-4.0.5.jar.sha1
share/solr/licenses/metrics-jmx-4.0.5.jar.sha1
share/solr/licenses/metrics-jetty9-4.1.2.jar.sha1
share/solr/licenses/metrics-jmx-4.1.2.jar.sha1
share/solr/licenses/metrics-jmx-LICENSE-ASL.txt
share/solr/licenses/metrics-jmx-NOTICE.txt
share/solr/licenses/metrics-json-LICENSE-ASL.txt
share/solr/licenses/metrics-json-NOTICE.txt
share/solr/licenses/metrics-jvm-4.0.5.jar.sha1
share/solr/licenses/metrics-jvm-4.1.2.jar.sha1
share/solr/licenses/metrics-jvm-LICENSE-ASL.txt
share/solr/licenses/metrics-jvm-NOTICE.txt
share/solr/licenses/metrics-servlets-LICENSE-ASL.txt
@ -1011,36 +1017,36 @@ share/solr/licenses/opentracing-noop-NOTICE.txt
share/solr/licenses/opentracing-util-0.33.0.jar.sha1
share/solr/licenses/opentracing-util-LICENSE-ASL.txt
share/solr/licenses/opentracing-util-NOTICE.txt
share/solr/licenses/org.restlet-2.3.0.jar.sha1
share/solr/licenses/org.restlet-2.4.0.jar.sha1
share/solr/licenses/org.restlet-LICENSE-ASL.txt
share/solr/licenses/org.restlet-NOTICE.txt
share/solr/licenses/org.restlet.ext.servlet-2.3.0.jar.sha1
share/solr/licenses/org.restlet.ext.servlet-2.4.0.jar.sha1
share/solr/licenses/org.restlet.ext.servlet-LICENSE-ASL.txt
share/solr/licenses/org.restlet.ext.servlet-NOTICE.txt
share/solr/licenses/parso-2.0.9.jar.sha1
share/solr/licenses/parso-2.0.11.jar.sha1
share/solr/licenses/parso-LICENSE-ASL.txt
share/solr/licenses/parso-NOTICE.txt
share/solr/licenses/pdfbox-2.0.12.jar.sha1
share/solr/licenses/pdfbox-2.0.17.jar.sha1
share/solr/licenses/pdfbox-LICENSE-ASL.txt
share/solr/licenses/pdfbox-NOTICE.txt
share/solr/licenses/pdfbox-tools-2.0.12.jar.sha1
share/solr/licenses/pdfbox-tools-2.0.17.jar.sha1
share/solr/licenses/pdfbox-tools-LICENSE-ASL.txt
share/solr/licenses/pdfbox-tools-NOTICE.txt
share/solr/licenses/poi-4.0.0.jar.sha1
share/solr/licenses/poi-4.1.1.jar.sha1
share/solr/licenses/poi-LICENSE-ASL.txt
share/solr/licenses/poi-NOTICE.txt
share/solr/licenses/poi-ooxml-4.0.0.jar.sha1
share/solr/licenses/poi-ooxml-4.1.1.jar.sha1
share/solr/licenses/poi-ooxml-LICENSE-ASL.txt
share/solr/licenses/poi-ooxml-NOTICE.txt
share/solr/licenses/poi-ooxml-schemas-4.0.0.jar.sha1
share/solr/licenses/poi-ooxml-schemas-4.1.1.jar.sha1
share/solr/licenses/poi-ooxml-schemas-LICENSE-ASL.txt
share/solr/licenses/poi-ooxml-schemas-NOTICE.txt
share/solr/licenses/poi-scratchpad-4.0.0.jar.sha1
share/solr/licenses/poi-scratchpad-4.1.1.jar.sha1
share/solr/licenses/poi-scratchpad-LICENSE-ASL.txt
share/solr/licenses/poi-scratchpad-NOTICE.txt
share/solr/licenses/presto-parser-LICENSE-ASL.txt
share/solr/licenses/presto-parser-NOTICE.txt
share/solr/licenses/protobuf-java-3.6.1.jar.sha1
share/solr/licenses/protobuf-java-3.11.0.jar.sha1
share/solr/licenses/protobuf-java-LICENSE-BSD.txt
share/solr/licenses/protobuf-java-NOTICE.txt
share/solr/licenses/randomizedtesting-runner-2.7.2.jar.sha1
@ -1049,10 +1055,10 @@ share/solr/licenses/randomizedtesting-runner-NOTICE.txt
share/solr/licenses/re2j-1.2.jar.sha1
share/solr/licenses/re2j-LICENSE-BSD_LIKE.txt
share/solr/licenses/re2j-NOTICE.txt
share/solr/licenses/rome-1.5.1.jar.sha1
share/solr/licenses/rome-1.12.2.jar.sha1
share/solr/licenses/rome-LICENSE-ASL.txt
share/solr/licenses/rome-NOTICE.txt
share/solr/licenses/rome-utils-1.5.1.jar.sha1
share/solr/licenses/rome-utils-1.12.2.jar.sha1
share/solr/licenses/rome-utils-LICENSE-ASL.txt
share/solr/licenses/rome-utils-NOTICE.txt
share/solr/licenses/rrd4j-3.5.jar.sha1
@ -1094,16 +1100,16 @@ share/solr/licenses/t-digest-NOTICE.txt
share/solr/licenses/tagsoup-1.2.1.jar.sha1
share/solr/licenses/tagsoup-LICENSE-ASL.txt
share/solr/licenses/tagsoup-NOTICE.txt
share/solr/licenses/tika-core-1.19.1.jar.sha1
share/solr/licenses/tika-core-1.23.jar.sha1
share/solr/licenses/tika-core-LICENSE-ASL.txt
share/solr/licenses/tika-core-NOTICE.txt
share/solr/licenses/tika-java7-1.19.1.jar.sha1
share/solr/licenses/tika-java7-1.23.jar.sha1
share/solr/licenses/tika-java7-LICENSE-ASL.txt
share/solr/licenses/tika-java7-NOTICE.txt
share/solr/licenses/tika-parsers-1.19.1.jar.sha1
share/solr/licenses/tika-parsers-1.23.jar.sha1
share/solr/licenses/tika-parsers-LICENSE-ASL.txt
share/solr/licenses/tika-parsers-NOTICE.txt
share/solr/licenses/tika-xmp-1.19.1.jar.sha1
share/solr/licenses/tika-xmp-1.23.jar.sha1
share/solr/licenses/tika-xmp-LICENSE-ASL.txt
share/solr/licenses/tika-xmp-NOTICE.txt
share/solr/licenses/velocity-engine-core-2.0.jar.sha1
@ -1127,10 +1133,13 @@ share/solr/licenses/vorbis-java-tika-NOTICE.txt
share/solr/licenses/woodstox-core-asl-4.4.1.jar.sha1
share/solr/licenses/woodstox-core-asl-LICENSE-ASL.txt
share/solr/licenses/woodstox-core-asl-NOTICE.txt
share/solr/licenses/xercesImpl-2.9.1.jar.sha1
share/solr/licenses/xercesImpl-2.12.0.jar.sha1
share/solr/licenses/xercesImpl-LICENSE-ASL.txt
share/solr/licenses/xercesImpl-NOTICE.txt
share/solr/licenses/xmlbeans-3.0.1.jar.sha1
share/solr/licenses/xml-apis-1.4.01.jar.sha1
share/solr/licenses/xml-apis-LICENSE-ASL.txt
share/solr/licenses/xml-apis-NOTICE.txt
share/solr/licenses/xmlbeans-3.1.0.jar.sha1
share/solr/licenses/xmlbeans-LICENSE-ASL.txt
share/solr/licenses/xmlbeans-NOTICE.txt
share/solr/licenses/xmpcore-5.1.3.jar.sha1
@ -1153,8 +1162,11 @@ share/solr/server/etc/
share/solr/server/etc/jetty-http.xml
share/solr/server/etc/jetty-https.xml
share/solr/server/etc/jetty-https8.xml
share/solr/server/etc/jetty-requestlog.xml
share/solr/server/etc/jetty-ssl.xml
share/solr/server/etc/jetty.xml
share/solr/server/etc/security.policy
share/solr/server/etc/security.properties
share/solr/server/etc/webdefault.xml
share/solr/server/lib/
share/solr/server/lib/ext/
@ -1167,40 +1179,42 @@ share/solr/server/lib/ext/log4j-core-2.11.2.jar
share/solr/server/lib/ext/log4j-slf4j-impl-2.11.2.jar
share/solr/server/lib/ext/log4j-web-2.11.2.jar
share/solr/server/lib/ext/slf4j-api-1.7.24.jar
share/solr/server/lib/http2-common-9.4.19.v20190610.jar
share/solr/server/lib/http2-hpack-9.4.19.v20190610.jar
share/solr/server/lib/http2-server-9.4.19.v20190610.jar
share/solr/server/lib/http2-common-9.4.24.v20191120.jar
share/solr/server/lib/http2-hpack-9.4.24.v20191120.jar
share/solr/server/lib/http2-server-9.4.24.v20191120.jar
share/solr/server/lib/javax.servlet-api-3.1.0.jar
share/solr/server/lib/jetty-alpn-java-server-9.4.19.v20190610.jar
share/solr/server/lib/jetty-alpn-server-9.4.19.v20190610.jar
share/solr/server/lib/jetty-continuation-9.4.19.v20190610.jar
share/solr/server/lib/jetty-deploy-9.4.19.v20190610.jar
share/solr/server/lib/jetty-http-9.4.19.v20190610.jar
share/solr/server/lib/jetty-io-9.4.19.v20190610.jar
share/solr/server/lib/jetty-jmx-9.4.19.v20190610.jar
share/solr/server/lib/jetty-rewrite-9.4.19.v20190610.jar
share/solr/server/lib/jetty-security-9.4.19.v20190610.jar
share/solr/server/lib/jetty-server-9.4.19.v20190610.jar
share/solr/server/lib/jetty-servlet-9.4.19.v20190610.jar
share/solr/server/lib/jetty-servlets-9.4.19.v20190610.jar
share/solr/server/lib/jetty-util-9.4.19.v20190610.jar
share/solr/server/lib/jetty-webapp-9.4.19.v20190610.jar
share/solr/server/lib/jetty-xml-9.4.19.v20190610.jar
share/solr/server/lib/metrics-core-4.0.5.jar
share/solr/server/lib/metrics-graphite-4.0.5.jar
share/solr/server/lib/metrics-jetty9-4.0.5.jar
share/solr/server/lib/metrics-jmx-4.0.5.jar
share/solr/server/lib/metrics-jvm-4.0.5.jar
share/solr/server/lib/jetty-alpn-java-server-9.4.24.v20191120.jar
share/solr/server/lib/jetty-alpn-server-9.4.24.v20191120.jar
share/solr/server/lib/jetty-continuation-9.4.24.v20191120.jar
share/solr/server/lib/jetty-deploy-9.4.24.v20191120.jar
share/solr/server/lib/jetty-http-9.4.24.v20191120.jar
share/solr/server/lib/jetty-io-9.4.24.v20191120.jar
share/solr/server/lib/jetty-jmx-9.4.24.v20191120.jar
share/solr/server/lib/jetty-rewrite-9.4.24.v20191120.jar
share/solr/server/lib/jetty-security-9.4.24.v20191120.jar
share/solr/server/lib/jetty-server-9.4.24.v20191120.jar
share/solr/server/lib/jetty-servlet-9.4.24.v20191120.jar
share/solr/server/lib/jetty-servlets-9.4.24.v20191120.jar
share/solr/server/lib/jetty-util-9.4.24.v20191120.jar
share/solr/server/lib/jetty-webapp-9.4.24.v20191120.jar
share/solr/server/lib/jetty-xml-9.4.24.v20191120.jar
share/solr/server/lib/metrics-core-4.1.2.jar
share/solr/server/lib/metrics-graphite-4.1.2.jar
share/solr/server/lib/metrics-jetty9-4.1.2.jar
share/solr/server/lib/metrics-jmx-4.1.2.jar
share/solr/server/lib/metrics-jvm-4.1.2.jar
share/solr/server/modules/
share/solr/server/modules/http.mod
share/solr/server/modules/https.mod
share/solr/server/modules/https8.mod
share/solr/server/modules/requestlog.mod
share/solr/server/modules/server.mod
share/solr/server/modules/ssl.mod
share/solr/server/resources/
share/solr/server/resources/jetty-logging.properties
share/solr/server/resources/log4j2-console.xml
share/solr/server/resources/log4j2.xml
@sample ${LOCALSTATEDIR}/db/solr/log4j.properties
share/solr/server/scripts/
share/solr/server/scripts/cloud-scripts/
share/solr/server/scripts/cloud-scripts/snapshotscli.sh
@ -1212,21 +1226,21 @@ share/solr/server/solr-webapp/webapp/
share/solr/server/solr-webapp/webapp/WEB-INF/
share/solr/server/solr-webapp/webapp/WEB-INF/lib/
share/solr/server/solr-webapp/webapp/WEB-INF/lib/antlr4-runtime-4.5.1-1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-5.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-commons-5.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-7.2.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/asm-commons-7.2.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/avatica-core-1.13.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/caffeine-2.8.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-core-1.18.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-linq4j-1.18.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-cli-1.2.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-codec-1.11.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-codec-1.13.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-collections-3.2.2.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-compiler-3.0.9.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-configuration2-2.1.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-exec-1.3.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-fileupload-1.3.3.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-io-2.5.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang3-3.8.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-io-2.6.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang3-3.9.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-math3-3.6.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/commons-text-1.6.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/curator-client-2.13.0.jar
@ -1241,25 +1255,25 @@ share/solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-common-3.2.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-hdfs-client-3.2.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/hppc-0.8.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/htrace-core4-4.1.0-incubating.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-client-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-common-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-hpack-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-http-client-transport-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/httpclient-4.5.6.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/httpcore-4.4.10.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/httpmime-4.5.6.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-annotations-2.10.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.10.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-databind-2.10.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.10.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-client-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-common-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-hpack-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/http2-http-client-transport-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/httpclient-4.5.10.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/httpcore-4.4.12.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/httpmime-4.5.10.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-annotations-2.10.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.10.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-databind-2.10.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.10.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/janino-3.0.9.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/java-semver-0.9.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-alpn-client-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-alpn-java-client-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-client-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-http-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-io-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-util-9.4.19.v20190610.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-alpn-client-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-alpn-java-client-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-client-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-http-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-io-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-util-9.4.24.v20191120.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/jose4j-0.6.5.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/json-path-2.4.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/kerb-core-1.0.1.jar
@ -1297,9 +1311,9 @@ share/solr/server/solr-webapp/webapp/WEB-INF/lib/netty-transport-native-unix-com
share/solr/server/solr-webapp/webapp/WEB-INF/lib/opentracing-api-0.33.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/opentracing-noop-0.33.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/opentracing-util-0.33.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet-2.3.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet.ext.servlet-2.3.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/protobuf-java-3.6.1.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet-2.4.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet.ext.servlet-2.4.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/protobuf-java-3.11.0.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/re2j-1.2.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/rrd4j-3.5.jar
share/solr/server/solr-webapp/webapp/WEB-INF/lib/s2-geometry-library-java-1.0.0.jar
@ -1329,6 +1343,7 @@ share/solr/server/solr-webapp/webapp/css/angular/index.css
share/solr/server/solr-webapp/webapp/css/angular/java-properties.css
share/solr/server/solr-webapp/webapp/css/angular/jquery-ui.min.css
share/solr/server/solr-webapp/webapp/css/angular/jquery-ui.structure.min.css
share/solr/server/solr-webapp/webapp/css/angular/jstree.style.min.css
share/solr/server/solr-webapp/webapp/css/angular/logging.css
share/solr/server/solr-webapp/webapp/css/angular/login.css
share/solr/server/solr-webapp/webapp/css/angular/menu.css
@ -1343,8 +1358,8 @@ share/solr/server/solr-webapp/webapp/css/angular/suggestions.css
share/solr/server/solr-webapp/webapp/css/angular/threads.css
share/solr/server/solr-webapp/webapp/favicon.ico
share/solr/server/solr-webapp/webapp/img/
share/solr/server/solr-webapp/webapp/img/chosen-sprite-2x.png
share/solr/server/solr-webapp/webapp/img/chosen-sprite.png
share/solr/server/solr-webapp/webapp/img/chosen-sprite@2x.png
share/solr/server/solr-webapp/webapp/img/div.gif
share/solr/server/solr-webapp/webapp/img/favicon.ico
share/solr/server/solr-webapp/webapp/img/filetypes/
@ -1552,6 +1567,10 @@ share/solr/server/solr-webapp/webapp/img/ico/ui-text-field-select.png
share/solr/server/solr-webapp/webapp/img/ico/users.png
share/solr/server/solr-webapp/webapp/img/ico/wooden-box.png
share/solr/server/solr-webapp/webapp/img/ico/zone.png
share/solr/server/solr-webapp/webapp/img/jstree/
share/solr/server/solr-webapp/webapp/img/jstree/32px.png
share/solr/server/solr-webapp/webapp/img/jstree/40px.png
share/solr/server/solr-webapp/webapp/img/jstree/throbber.gif
share/solr/server/solr-webapp/webapp/img/loader-light.gif
share/solr/server/solr-webapp/webapp/img/loader.gif
share/solr/server/solr-webapp/webapp/img/lucene-ico.png
@ -1588,26 +1607,19 @@ share/solr/server/solr-webapp/webapp/js/angular/controllers/threads.js
share/solr/server/solr-webapp/webapp/js/angular/controllers/unknown.js
share/solr/server/solr-webapp/webapp/js/angular/services.js
share/solr/server/solr-webapp/webapp/libs/
share/solr/server/solr-webapp/webapp/libs/angular-chosen.js
share/solr/server/solr-webapp/webapp/libs/angular-cookies.js
share/solr/server/solr-webapp/webapp/libs/angular-chosen.min.js
share/solr/server/solr-webapp/webapp/libs/angular-cookies.min.js
share/solr/server/solr-webapp/webapp/libs/angular-resource.min.js
share/solr/server/solr-webapp/webapp/libs/angular-route.js
share/solr/server/solr-webapp/webapp/libs/angular-route.min.js
share/solr/server/solr-webapp/webapp/libs/angular-sanitize.js
share/solr/server/solr-webapp/webapp/libs/angular-sanitize.min.js
share/solr/server/solr-webapp/webapp/libs/angular-utf8-base64.js
share/solr/server/solr-webapp/webapp/libs/angular-utf8-base64.min.js
share/solr/server/solr-webapp/webapp/libs/angular.js
share/solr/server/solr-webapp/webapp/libs/angular.min.js
share/solr/server/solr-webapp/webapp/libs/chosen.jquery.js
share/solr/server/solr-webapp/webapp/libs/chosen.jquery.min.js
share/solr/server/solr-webapp/webapp/libs/d3.js
share/solr/server/solr-webapp/webapp/libs/highlight.js
share/solr/server/solr-webapp/webapp/libs/jquery-1.7.2.min.js
share/solr/server/solr-webapp/webapp/libs/jquery-2.1.3.min.js
share/solr/server/solr-webapp/webapp/libs/jquery-3.4.1.min.js
share/solr/server/solr-webapp/webapp/libs/jquery-ui.min.js
share/solr/server/solr-webapp/webapp/libs/jquery.jstree.js
share/solr/server/solr-webapp/webapp/libs/jstree.min.js
share/solr/server/solr-webapp/webapp/libs/ngtimeago.js
share/solr/server/solr-webapp/webapp/partials/
share/solr/server/solr-webapp/webapp/partials/alias_overview.html