Index: head/textproc/apache-solr/Makefile =================================================================== --- head/textproc/apache-solr/Makefile (revision 481922) +++ head/textproc/apache-solr/Makefile (revision 481923) @@ -1,53 +1,49 @@ # Created by: Gea-Suan Lin # $FreeBSD$ PORTNAME= apache-solr -PORTVERSION= 7.1.0 +PORTVERSION= 7.4.0 CATEGORIES= textproc java MASTER_SITES= APACHE/lucene/solr/${PORTVERSION} DISTNAME= solr-${PORTVERSION} MAINTAINER= mfechner@FreeBSD.org COMMENT= High performance search server built using Lucene Java LICENSE= APACHE20 RUN_DEPENDS= bash:shells/bash CONFLICTS_INSTALL= apache-solr3-* apache-solr-4* apache-solr-5* USES= cpe tar:tgz USE_JAVA= yes JAVA_VERSION= 1.8+ JAVA_RUN= yes NO_BUILD= yes NO_ARCH= yes PLIST_SUB+= PORTVERSION="${PORTVERSION}" SUB_FILES= pkg-message USE_RC_SUBR= solr USERS= solr GROUPS= ${USERS} CPE_PRODUCT= solr CPE_VENDOR= apache -post-patch: - ${REINPLACE_CMD} -e 's|solr.log=.*|solr.log=/var/log/solr|g' ${WRKSRC}/server/resources/log4j.properties - do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${CPE_PRODUCT} ${INSTALL_SCRIPT} ${WRKSRC}/bin/solr ${STAGEDIR}${PREFIX}/${CPE_PRODUCT}/bin ${INSTALL_DATA} ${WRKSRC}/bin/solr.in.sh ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${ECHO} 'SOLR_HOME="/var/db/solr"' >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${ECHO} 'LOG4J_PROPS="/var/db/solr/log4j.properties"' >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${ECHO} 'SOLR_LOGS_DIR="/var/log/solr"' >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${ECHO} 'SOLR_PORT="8983"' >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${ECHO} 'SOLR_PID_DIR="/var/db/solr"' >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${ECHO} 'SOLR_OPTS="$$SOLR_OPTS -Djetty.host=localhost"' >> ${STAGEDIR}${PREFIX}/etc/solr.in.sh-dist ${MKDIR} ${STAGEDIR}/var/db/solr ${MKDIR} ${STAGEDIR}/var/log/solr ${INSTALL_DATA} ${WRKSRC}/server/solr/solr.xml ${STAGEDIR}/var/db/solr/solr.xml-dist - ${INSTALL_DATA} ${WRKSRC}/server/resources/log4j.properties ${STAGEDIR}/var/db/solr/log4j.properties-dist .include Index: head/textproc/apache-solr/distinfo =================================================================== --- head/textproc/apache-solr/distinfo (revision 481922) +++ head/textproc/apache-solr/distinfo (revision 481923) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508238386 -SHA256 (solr-7.1.0.tgz) = 5cd25cc2634e47efbb529658d6ddd406a7cd1b211affa26563a28db2d80b8133 -SIZE (solr-7.1.0.tgz) = 152481397 +TIMESTAMP = 1537608749 +SHA256 (solr-7.4.0.tgz) = a50eac8dece0acb5e6f0d868c7868ce8174e299752356f3424a15aa39bd64407 +SIZE (solr-7.4.0.tgz) = 167346886 Index: head/textproc/apache-solr/files/pkg-message.in =================================================================== --- head/textproc/apache-solr/files/pkg-message.in (revision 481922) +++ head/textproc/apache-solr/files/pkg-message.in (revision 481923) @@ -1,31 +1,30 @@ ======================================================================= Make sure to edit the following files to adapt to your setup: %%LOCALBASE%%/etc/solr.in.sh /var/db/solr/solr.xml -/var/db/solr/log4j.properties All files are configured to have your solr instances running in /var/db/solr/ For more information how to configure solr check the manual: http://lucene.apache.org/solr/resources.html#documentation The port is configured to listen only on localhost, port 8983. To have a working initial config, use: cp -R %%LOCALBASE%%/solr/example/example-DIH/solr/solr /var/db/solr/ -chown -R www /var/db/solr/solr +chown -R solr /var/db/solr/solr To rotate solr log files include /var/log/solr/ to your log rotation configuration. To enable the port execute: sysrc solr_enable="YES" And start it with: service solr start ======================================================================= Index: head/textproc/apache-solr/files/solr.in =================================================================== --- head/textproc/apache-solr/files/solr.in (revision 481922) +++ head/textproc/apache-solr/files/solr.in (revision 481923) @@ -1,68 +1,68 @@ #!/bin/sh # # Copyright (c) 2014, Radim Kolar # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH # DAMAGE. # $FreeBSD$ # # PROVIDE: solr # REQUIRE: LOGIN # KEYWORD: shutdown . /etc/rc.subr name=solr rcvar=solr_enable load_rc_config $name : ${solr_enable:=NO} : ${solr_instance:=/var/db/solr} solr_start () { su -m solr -c "${command} start" } solr_stop () { su -m solr -c "${command} stop" } solr_status () { su -m solr -c "${command} status" } # add %%LOCALBASE%%/bin to path export PATH=$PATH:%%LOCALBASE%%/bin # let the start script read some custom settings export SOLR_INCLUDE=/usr/local/etc/solr.in.sh -required_files="${solr_instance}/solr.xml /usr/local/etc/solr.in.sh ${solr_instance}/log4j.properties" +required_files="${solr_instance}/solr.xml /usr/local/etc/solr.in.sh" command=%%PREFIX%%/solr/bin/solr start_cmd=solr_start stop_cmd=solr_stop status_cmd=solr_status run_rc_command "$1" Index: head/textproc/apache-solr/pkg-descr =================================================================== --- head/textproc/apache-solr/pkg-descr (revision 481922) +++ head/textproc/apache-solr/pkg-descr (revision 481923) @@ -1,7 +1,7 @@ Solr is an open source enterprise search server based on the Lucene Java search library, with XML/HTTP and JSON APIs, hit highlighting, faceted search, caching, replication, a web administration interface and many more features. It runs in a Java servlet container such as Tomcat. -WWW: http://lucene.apache.org/solr/ +WWW: https://lucene.apache.org/solr/ Index: head/textproc/apache-solr/pkg-plist =================================================================== --- head/textproc/apache-solr/pkg-plist (revision 481922) +++ head/textproc/apache-solr/pkg-plist (revision 481923) @@ -1,1524 +1,1590 @@ @sample etc/solr.in.sh-dist etc/solr.in.sh @sample(solr,solr) /var/db/solr/solr.xml-dist /var/db/solr/solr.xml -@sample(solr,solr) /var/db/solr/log4j.properties-dist /var/db/solr/log4j.properties solr/CHANGES.txt solr/LICENSE.txt solr/LUCENE_CHANGES.txt solr/NOTICE.txt solr/README.txt solr/bin/init.d/solr solr/bin/install_solr_service.sh solr/bin/oom_solr.sh solr/bin/post solr/bin/solr solr/bin/solr.cmd solr/bin/solr.in.cmd solr/bin/solr.in.sh solr/contrib/analysis-extras/README.txt -solr/contrib/analysis-extras/lib/icu4j-59.1.jar -solr/contrib/analysis-extras/lib/morfologik-fsa-2.1.1.jar -solr/contrib/analysis-extras/lib/morfologik-polish-2.1.1.jar -solr/contrib/analysis-extras/lib/morfologik-stemming-2.1.1.jar +solr/contrib/analysis-extras/lib/icu4j-61.1.jar +solr/contrib/analysis-extras/lib/morfologik-fsa-2.1.5.jar +solr/contrib/analysis-extras/lib/morfologik-polish-2.1.5.jar +solr/contrib/analysis-extras/lib/morfologik-stemming-2.1.5.jar +solr/contrib/analysis-extras/lib/opennlp-maxent-3.0.3.jar +solr/contrib/analysis-extras/lib/opennlp-tools-1.8.3.jar solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-icu-%%PORTVERSION%%.jar solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-morfologik-%%PORTVERSION%%.jar +solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-opennlp-%%PORTVERSION%%.jar solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-smartcn-%%PORTVERSION%%.jar solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-stempel-%%PORTVERSION%%.jar solr/contrib/clustering/README.txt -solr/contrib/clustering/lib/attributes-binder-1.3.1.jar +solr/contrib/clustering/lib/attributes-binder-1.3.3.jar solr/contrib/clustering/lib/carrot2-guava-18.0.jar -solr/contrib/clustering/lib/carrot2-mini-3.15.0.jar -solr/contrib/clustering/lib/jackson-annotations-2.5.4.jar -solr/contrib/clustering/lib/jackson-databind-2.5.4.jar +solr/contrib/clustering/lib/carrot2-mini-3.16.0.jar +solr/contrib/clustering/lib/jackson-annotations-2.9.5.jar +solr/contrib/clustering/lib/jackson-databind-2.9.5.jar solr/contrib/clustering/lib/simple-xml-2.7.1.jar solr/contrib/dataimporthandler-extras/lib/activation-1.1.1.jar solr/contrib/dataimporthandler-extras/lib/gimap-1.5.1.jar solr/contrib/dataimporthandler-extras/lib/javax.mail-1.5.1.jar solr/contrib/dataimporthandler/README.txt solr/contrib/extraction/README.txt -solr/contrib/extraction/lib/apache-mime4j-core-0.7.2.jar -solr/contrib/extraction/lib/apache-mime4j-dom-0.7.2.jar +solr/contrib/extraction/lib/apache-mime4j-core-0.8.1.jar +solr/contrib/extraction/lib/apache-mime4j-dom-0.8.1.jar solr/contrib/extraction/lib/aspectjrt-1.8.0.jar -solr/contrib/extraction/lib/bcmail-jdk15-1.45.jar -solr/contrib/extraction/lib/bcprov-jdk15-1.45.jar +solr/contrib/extraction/lib/bcmail-jdk15on-1.54.jar +solr/contrib/extraction/lib/bcpkix-jdk15on-1.54.jar +solr/contrib/extraction/lib/bcprov-jdk15on-1.54.jar solr/contrib/extraction/lib/boilerpipe-1.1.0.jar solr/contrib/extraction/lib/commons-collections4-4.1.jar solr/contrib/extraction/lib/commons-compress-1.14.jar solr/contrib/extraction/lib/curvesapi-1.04.jar -solr/contrib/extraction/lib/fontbox-2.0.6.jar -solr/contrib/extraction/lib/icu4j-59.1.jar +solr/contrib/extraction/lib/fontbox-2.0.8.jar +solr/contrib/extraction/lib/icu4j-61.1.jar solr/contrib/extraction/lib/isoparser-1.1.18.jar solr/contrib/extraction/lib/jackcess-2.1.8.jar +solr/contrib/extraction/lib/jackcess-encrypt-2.1.4.jar solr/contrib/extraction/lib/java-libpst-0.8.1.jar -solr/contrib/extraction/lib/jdom-1.0.jar +solr/contrib/extraction/lib/jdom-2.0.2.jar solr/contrib/extraction/lib/jempbox-1.8.13.jar solr/contrib/extraction/lib/jmatio-1.2.jar solr/contrib/extraction/lib/juniversalchardet-1.0.3.jar -solr/contrib/extraction/lib/metadata-extractor-2.9.1.jar -solr/contrib/extraction/lib/pdfbox-2.0.6.jar -solr/contrib/extraction/lib/pdfbox-tools-2.0.6.jar -solr/contrib/extraction/lib/poi-3.17-beta1.jar -solr/contrib/extraction/lib/poi-ooxml-3.17-beta1.jar -solr/contrib/extraction/lib/poi-ooxml-schemas-3.17-beta1.jar -solr/contrib/extraction/lib/poi-scratchpad-3.17-beta1.jar +solr/contrib/extraction/lib/metadata-extractor-2.10.1.jar +solr/contrib/extraction/lib/pdfbox-2.0.8.jar +solr/contrib/extraction/lib/pdfbox-tools-2.0.8.jar +solr/contrib/extraction/lib/poi-3.17.jar +solr/contrib/extraction/lib/poi-ooxml-3.17.jar +solr/contrib/extraction/lib/poi-ooxml-schemas-3.17.jar +solr/contrib/extraction/lib/poi-scratchpad-3.17.jar solr/contrib/extraction/lib/rome-1.5.1.jar +solr/contrib/extraction/lib/rome-utils-1.5.1.jar solr/contrib/extraction/lib/tagsoup-1.2.1.jar -solr/contrib/extraction/lib/tika-core-1.16.jar -solr/contrib/extraction/lib/tika-java7-1.16.jar -solr/contrib/extraction/lib/tika-parsers-1.16.jar -solr/contrib/extraction/lib/tika-xmp-1.16.jar +solr/contrib/extraction/lib/tika-core-1.17.jar +solr/contrib/extraction/lib/tika-java7-1.17.jar +solr/contrib/extraction/lib/tika-parsers-1.17.jar +solr/contrib/extraction/lib/tika-xmp-1.17.jar solr/contrib/extraction/lib/vorbis-java-core-0.8.jar solr/contrib/extraction/lib/vorbis-java-tika-0.8.jar solr/contrib/extraction/lib/xercesImpl-2.9.1.jar solr/contrib/extraction/lib/xmlbeans-2.6.0.jar -solr/contrib/extraction/lib/xmpcore-5.1.2.jar +solr/contrib/extraction/lib/xmpcore-5.1.3.jar solr/contrib/extraction/lib/xz-1.6.jar solr/contrib/langid/README.txt solr/contrib/langid/lib/jsonic-1.2.7.jar solr/contrib/langid/lib/langdetect-1.1-20120112.jar +solr/contrib/langid/lib/opennlp-tools-1.8.3.jar solr/contrib/ltr/README.txt +solr/contrib/prometheus-exporter/README.txt +solr/contrib/prometheus-exporter/bin/solr-exporter +solr/contrib/prometheus-exporter/bin/solr-exporter.cmd +solr/contrib/prometheus-exporter/conf/grafana-solr-dashboard.json +solr/contrib/prometheus-exporter/conf/log4j2.xml +solr/contrib/prometheus-exporter/conf/solr-exporter-config.xml +solr/contrib/prometheus-exporter/lib/argparse4j-0.8.1.jar +solr/contrib/prometheus-exporter/lib/jackson-annotations-2.9.5.jar +solr/contrib/prometheus-exporter/lib/jackson-core-2.9.5.jar +solr/contrib/prometheus-exporter/lib/jackson-databind-2.9.5.jar +solr/contrib/prometheus-exporter/lib/jackson-jq-0.0.8.jar +solr/contrib/prometheus-exporter/lib/log4j-api-2.11.0.jar +solr/contrib/prometheus-exporter/lib/log4j-core-2.11.0.jar +solr/contrib/prometheus-exporter/lib/log4j-slf4j-impl-2.11.0.jar +solr/contrib/prometheus-exporter/lib/simpleclient-0.2.0.jar +solr/contrib/prometheus-exporter/lib/simpleclient_common-0.2.0.jar +solr/contrib/prometheus-exporter/lib/simpleclient_httpserver-0.2.0.jar +solr/contrib/prometheus-exporter/lib/slf4j-api-1.7.24.jar +solr/contrib/prometheus-exporter/lucene-libs/lucene-analyzers-common-%%PORTVERSION%%.jar solr/contrib/uima/README.txt solr/contrib/uima/lib/AlchemyAPIAnnotator-2.3.1.jar solr/contrib/uima/lib/OpenCalaisAnnotator-2.3.1.jar solr/contrib/uima/lib/Tagger-2.3.1.jar solr/contrib/uima/lib/WhitespaceTokenizer-2.3.1.jar solr/contrib/uima/lib/commons-digester-2.1.jar solr/contrib/uima/lib/uimaj-core-2.3.1.jar solr/contrib/uima/lucene-libs/lucene-analyzers-uima-%%PORTVERSION%%.jar solr/contrib/velocity/lib/commons-beanutils-1.8.3.jar solr/contrib/velocity/lib/commons-collections-3.2.2.jar solr/contrib/velocity/lib/velocity-1.7.jar solr/contrib/velocity/lib/velocity-tools-2.0.jar solr/dist/solr-analysis-extras-%%PORTVERSION%%.jar solr/dist/solr-analytics-%%PORTVERSION%%.jar solr/dist/solr-cell-%%PORTVERSION%%.jar solr/dist/solr-clustering-%%PORTVERSION%%.jar solr/dist/solr-core-%%PORTVERSION%%.jar solr/dist/solr-dataimporthandler-%%PORTVERSION%%.jar solr/dist/solr-dataimporthandler-extras-%%PORTVERSION%%.jar solr/dist/solr-langid-%%PORTVERSION%%.jar solr/dist/solr-ltr-%%PORTVERSION%%.jar +solr/dist/solr-prometheus-exporter-%%PORTVERSION%%.jar solr/dist/solr-solrj-%%PORTVERSION%%.jar solr/dist/solr-test-framework-%%PORTVERSION%%.jar solr/dist/solr-uima-%%PORTVERSION%%.jar solr/dist/solr-velocity-%%PORTVERSION%%.jar solr/dist/solrj-lib/commons-io-2.5.jar solr/dist/solrj-lib/commons-math3-3.6.1.jar solr/dist/solrj-lib/httpclient-4.5.3.jar solr/dist/solrj-lib/httpcore-4.4.6.jar solr/dist/solrj-lib/httpmime-4.5.3.jar -solr/dist/solrj-lib/jcl-over-slf4j-1.7.7.jar +solr/dist/solrj-lib/jcl-over-slf4j-1.7.24.jar solr/dist/solrj-lib/noggit-0.8.jar -solr/dist/solrj-lib/slf4j-api-1.7.7.jar +solr/dist/solrj-lib/slf4j-api-1.7.24.jar solr/dist/solrj-lib/stax2-api-3.1.4.jar solr/dist/solrj-lib/woodstox-core-asl-4.4.1.jar -solr/dist/solrj-lib/zookeeper-3.4.10.jar +solr/dist/solrj-lib/zookeeper-3.4.11.jar solr/dist/test-framework/README.txt solr/dist/test-framework/lib/ant-1.8.2.jar solr/dist/test-framework/lib/junit-4.10.jar -solr/dist/test-framework/lib/junit4-ant-2.5.3.jar -solr/dist/test-framework/lib/randomizedtesting-runner-2.5.3.jar +solr/dist/test-framework/lib/junit4-ant-2.6.0.jar +solr/dist/test-framework/lib/randomizedtesting-runner-2.6.0.jar solr/dist/test-framework/lucene-libs/lucene-test-framework-%%PORTVERSION%%.jar solr/docs/images/solr.svg solr/docs/index.html solr/example/README.txt solr/example/example-DIH/README.txt solr/example/example-DIH/hsqldb/ex.script solr/example/example-DIH/solr/atom/conf/atom-data-config.xml solr/example/example-DIH/solr/atom/conf/lang/stopwords_en.txt solr/example/example-DIH/solr/atom/conf/managed-schema solr/example/example-DIH/solr/atom/conf/protwords.txt solr/example/example-DIH/solr/atom/conf/solrconfig.xml solr/example/example-DIH/solr/atom/conf/synonyms.txt solr/example/example-DIH/solr/atom/conf/url_types.txt solr/example/example-DIH/solr/atom/core.properties -solr/example/example-DIH/solr/db/conf/admin-extra.html -solr/example/example-DIH/solr/db/conf/admin-extra.menu-bottom.html -solr/example/example-DIH/solr/db/conf/admin-extra.menu-top.html solr/example/example-DIH/solr/db/conf/clustering/carrot2/kmeans-attributes.xml solr/example/example-DIH/solr/db/conf/clustering/carrot2/lingo-attributes.xml solr/example/example-DIH/solr/db/conf/clustering/carrot2/stc-attributes.xml solr/example/example-DIH/solr/db/conf/currency.xml solr/example/example-DIH/solr/db/conf/db-data-config.xml solr/example/example-DIH/solr/db/conf/elevate.xml solr/example/example-DIH/solr/db/conf/lang/contractions_ca.txt solr/example/example-DIH/solr/db/conf/lang/contractions_fr.txt solr/example/example-DIH/solr/db/conf/lang/contractions_ga.txt solr/example/example-DIH/solr/db/conf/lang/contractions_it.txt solr/example/example-DIH/solr/db/conf/lang/hyphenations_ga.txt solr/example/example-DIH/solr/db/conf/lang/stemdict_nl.txt solr/example/example-DIH/solr/db/conf/lang/stoptags_ja.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ar.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_bg.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ca.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ckb.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_cz.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_da.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_de.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_el.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_en.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_es.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_eu.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_fa.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_fi.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_fr.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ga.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_gl.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_hi.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_hu.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_hy.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_id.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_it.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ja.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_lv.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_nl.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_no.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_pt.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ro.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_ru.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_sv.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_th.txt solr/example/example-DIH/solr/db/conf/lang/stopwords_tr.txt solr/example/example-DIH/solr/db/conf/lang/userdict_ja.txt solr/example/example-DIH/solr/db/conf/managed-schema solr/example/example-DIH/solr/db/conf/mapping-FoldToASCII.txt solr/example/example-DIH/solr/db/conf/mapping-ISOLatin1Accent.txt solr/example/example-DIH/solr/db/conf/protwords.txt solr/example/example-DIH/solr/db/conf/solrconfig.xml solr/example/example-DIH/solr/db/conf/spellings.txt solr/example/example-DIH/solr/db/conf/stopwords.txt solr/example/example-DIH/solr/db/conf/synonyms.txt solr/example/example-DIH/solr/db/conf/update-script.js solr/example/example-DIH/solr/db/conf/xslt/example.xsl solr/example/example-DIH/solr/db/conf/xslt/example_atom.xsl solr/example/example-DIH/solr/db/conf/xslt/example_rss.xsl solr/example/example-DIH/solr/db/conf/xslt/luke.xsl solr/example/example-DIH/solr/db/conf/xslt/updateXml.xsl solr/example/example-DIH/solr/db/core.properties solr/example/example-DIH/solr/db/lib/derby-10.9.1.0.jar solr/example/example-DIH/solr/db/lib/hsqldb-2.4.0.jar -solr/example/example-DIH/solr/mail/conf/admin-extra.html -solr/example/example-DIH/solr/mail/conf/admin-extra.menu-bottom.html -solr/example/example-DIH/solr/mail/conf/admin-extra.menu-top.html solr/example/example-DIH/solr/mail/conf/clustering/carrot2/kmeans-attributes.xml solr/example/example-DIH/solr/mail/conf/clustering/carrot2/lingo-attributes.xml solr/example/example-DIH/solr/mail/conf/clustering/carrot2/stc-attributes.xml solr/example/example-DIH/solr/mail/conf/currency.xml solr/example/example-DIH/solr/mail/conf/elevate.xml solr/example/example-DIH/solr/mail/conf/lang/contractions_ca.txt solr/example/example-DIH/solr/mail/conf/lang/contractions_fr.txt solr/example/example-DIH/solr/mail/conf/lang/contractions_ga.txt solr/example/example-DIH/solr/mail/conf/lang/contractions_it.txt solr/example/example-DIH/solr/mail/conf/lang/hyphenations_ga.txt solr/example/example-DIH/solr/mail/conf/lang/stemdict_nl.txt solr/example/example-DIH/solr/mail/conf/lang/stoptags_ja.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ar.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_bg.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ca.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ckb.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_cz.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_da.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_de.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_el.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_en.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_es.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_eu.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_fa.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_fi.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_fr.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ga.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_gl.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_hi.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_hu.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_hy.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_id.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_it.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ja.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_lv.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_nl.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_no.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_pt.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ro.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_ru.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_sv.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_th.txt solr/example/example-DIH/solr/mail/conf/lang/stopwords_tr.txt solr/example/example-DIH/solr/mail/conf/lang/userdict_ja.txt solr/example/example-DIH/solr/mail/conf/mail-data-config.xml solr/example/example-DIH/solr/mail/conf/managed-schema solr/example/example-DIH/solr/mail/conf/mapping-FoldToASCII.txt solr/example/example-DIH/solr/mail/conf/mapping-ISOLatin1Accent.txt solr/example/example-DIH/solr/mail/conf/protwords.txt solr/example/example-DIH/solr/mail/conf/solrconfig.xml solr/example/example-DIH/solr/mail/conf/spellings.txt solr/example/example-DIH/solr/mail/conf/stopwords.txt solr/example/example-DIH/solr/mail/conf/synonyms.txt solr/example/example-DIH/solr/mail/conf/update-script.js solr/example/example-DIH/solr/mail/conf/xslt/example.xsl solr/example/example-DIH/solr/mail/conf/xslt/example_atom.xsl solr/example/example-DIH/solr/mail/conf/xslt/example_rss.xsl solr/example/example-DIH/solr/mail/conf/xslt/luke.xsl solr/example/example-DIH/solr/mail/conf/xslt/updateXml.xsl solr/example/example-DIH/solr/mail/core.properties solr/example/example-DIH/solr/solr.xml -solr/example/example-DIH/solr/solr/conf/admin-extra.html -solr/example/example-DIH/solr/solr/conf/admin-extra.menu-bottom.html -solr/example/example-DIH/solr/solr/conf/admin-extra.menu-top.html solr/example/example-DIH/solr/solr/conf/clustering/carrot2/kmeans-attributes.xml solr/example/example-DIH/solr/solr/conf/clustering/carrot2/lingo-attributes.xml solr/example/example-DIH/solr/solr/conf/clustering/carrot2/stc-attributes.xml solr/example/example-DIH/solr/solr/conf/currency.xml solr/example/example-DIH/solr/solr/conf/elevate.xml solr/example/example-DIH/solr/solr/conf/lang/contractions_ca.txt solr/example/example-DIH/solr/solr/conf/lang/contractions_fr.txt solr/example/example-DIH/solr/solr/conf/lang/contractions_ga.txt solr/example/example-DIH/solr/solr/conf/lang/contractions_it.txt solr/example/example-DIH/solr/solr/conf/lang/hyphenations_ga.txt solr/example/example-DIH/solr/solr/conf/lang/stemdict_nl.txt solr/example/example-DIH/solr/solr/conf/lang/stoptags_ja.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ar.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_bg.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ca.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ckb.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_cz.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_da.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_de.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_el.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_en.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_es.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_eu.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_fa.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_fi.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_fr.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ga.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_gl.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_hi.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_hu.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_hy.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_id.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_it.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ja.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_lv.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_nl.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_no.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_pt.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ro.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_ru.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_sv.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_th.txt solr/example/example-DIH/solr/solr/conf/lang/stopwords_tr.txt solr/example/example-DIH/solr/solr/conf/lang/userdict_ja.txt solr/example/example-DIH/solr/solr/conf/managed-schema solr/example/example-DIH/solr/solr/conf/mapping-FoldToASCII.txt solr/example/example-DIH/solr/solr/conf/mapping-ISOLatin1Accent.txt solr/example/example-DIH/solr/solr/conf/protwords.txt solr/example/example-DIH/solr/solr/conf/solr-data-config.xml solr/example/example-DIH/solr/solr/conf/solrconfig.xml solr/example/example-DIH/solr/solr/conf/spellings.txt solr/example/example-DIH/solr/solr/conf/stopwords.txt solr/example/example-DIH/solr/solr/conf/synonyms.txt solr/example/example-DIH/solr/solr/conf/update-script.js solr/example/example-DIH/solr/solr/conf/xslt/example.xsl solr/example/example-DIH/solr/solr/conf/xslt/example_atom.xsl solr/example/example-DIH/solr/solr/conf/xslt/example_rss.xsl solr/example/example-DIH/solr/solr/conf/xslt/luke.xsl solr/example/example-DIH/solr/solr/conf/xslt/updateXml.xsl solr/example/example-DIH/solr/solr/core.properties solr/example/example-DIH/solr/tika/conf/managed-schema solr/example/example-DIH/solr/tika/conf/solrconfig.xml solr/example/example-DIH/solr/tika/conf/tika-data-config.xml solr/example/example-DIH/solr/tika/core.properties solr/example/exampledocs/books.csv solr/example/exampledocs/books.json solr/example/exampledocs/gb18030-example.xml solr/example/exampledocs/hd.xml solr/example/exampledocs/ipod_other.xml solr/example/exampledocs/ipod_video.xml solr/example/exampledocs/manufacturers.xml solr/example/exampledocs/mem.xml solr/example/exampledocs/money.xml solr/example/exampledocs/monitor.xml solr/example/exampledocs/monitor2.xml solr/example/exampledocs/more_books.jsonl solr/example/exampledocs/mp500.xml solr/example/exampledocs/post.jar solr/example/exampledocs/sample.html solr/example/exampledocs/sd500.xml solr/example/exampledocs/solr-word.pdf solr/example/exampledocs/solr.xml solr/example/exampledocs/test_utf8.sh solr/example/exampledocs/utf8-example.xml solr/example/exampledocs/vidcard.xml solr/example/files/README.txt solr/example/files/browse-resources/velocity/resources.properties solr/example/files/browse-resources/velocity/resources_de_DE.properties solr/example/files/browse-resources/velocity/resources_fr_FR.properties solr/example/files/conf/currency.xml solr/example/files/conf/elevate.xml solr/example/files/conf/email_url_types.txt solr/example/files/conf/lang/contractions_ca.txt solr/example/files/conf/lang/contractions_fr.txt solr/example/files/conf/lang/contractions_ga.txt solr/example/files/conf/lang/contractions_it.txt solr/example/files/conf/lang/hyphenations_ga.txt solr/example/files/conf/lang/stemdict_nl.txt solr/example/files/conf/lang/stoptags_ja.txt solr/example/files/conf/lang/stopwords_ar.txt solr/example/files/conf/lang/stopwords_bg.txt solr/example/files/conf/lang/stopwords_ca.txt solr/example/files/conf/lang/stopwords_cz.txt solr/example/files/conf/lang/stopwords_da.txt solr/example/files/conf/lang/stopwords_de.txt solr/example/files/conf/lang/stopwords_el.txt solr/example/files/conf/lang/stopwords_en.txt solr/example/files/conf/lang/stopwords_es.txt solr/example/files/conf/lang/stopwords_eu.txt solr/example/files/conf/lang/stopwords_fa.txt solr/example/files/conf/lang/stopwords_fi.txt solr/example/files/conf/lang/stopwords_fr.txt solr/example/files/conf/lang/stopwords_ga.txt solr/example/files/conf/lang/stopwords_gl.txt solr/example/files/conf/lang/stopwords_hi.txt solr/example/files/conf/lang/stopwords_hu.txt solr/example/files/conf/lang/stopwords_hy.txt solr/example/files/conf/lang/stopwords_id.txt solr/example/files/conf/lang/stopwords_it.txt solr/example/files/conf/lang/stopwords_ja.txt solr/example/files/conf/lang/stopwords_lv.txt solr/example/files/conf/lang/stopwords_nl.txt solr/example/files/conf/lang/stopwords_no.txt solr/example/files/conf/lang/stopwords_pt.txt solr/example/files/conf/lang/stopwords_ro.txt solr/example/files/conf/lang/stopwords_ru.txt solr/example/files/conf/lang/stopwords_sv.txt solr/example/files/conf/lang/stopwords_th.txt solr/example/files/conf/lang/stopwords_tr.txt solr/example/files/conf/lang/userdict_ja.txt solr/example/files/conf/managed-schema solr/example/files/conf/params.json solr/example/files/conf/protwords.txt solr/example/files/conf/solrconfig.xml solr/example/files/conf/stopwords.txt solr/example/files/conf/synonyms.txt solr/example/files/conf/update-script.js solr/example/files/conf/velocity/browse.vm solr/example/files/conf/velocity/dropit.js solr/example/files/conf/velocity/facet_doc_type.vm solr/example/files/conf/velocity/facet_text_shingles.vm solr/example/files/conf/velocity/facets.vm solr/example/files/conf/velocity/footer.vm solr/example/files/conf/velocity/head.vm solr/example/files/conf/velocity/hit.vm solr/example/files/conf/velocity/img/english_640.png solr/example/files/conf/velocity/img/france_640.png solr/example/files/conf/velocity/img/germany_640.png solr/example/files/conf/velocity/img/globe_256.png solr/example/files/conf/velocity/jquery.tx3-tag-cloud.js solr/example/files/conf/velocity/js/dropit.js solr/example/files/conf/velocity/js/jquery.autocomplete.js solr/example/files/conf/velocity/js/jquery.tx3-tag-cloud.js solr/example/files/conf/velocity/layout.vm solr/example/files/conf/velocity/macros.vm solr/example/files/conf/velocity/mime_type_lists.vm solr/example/files/conf/velocity/results.vm solr/example/files/conf/velocity/results_list.vm solr/example/films/README.txt solr/example/films/film_data_generator.py solr/example/films/films-LICENSE.txt solr/example/films/films.csv solr/example/films/films.json solr/example/films/films.xml -solr/example/resources/log4j.properties +solr/example/resources/log4j2.xml solr/licenses/AlchemyAPIAnnotator-2.3.1.jar.sha1 solr/licenses/AlchemyAPIAnnotator-LICENSE-ASL.txt solr/licenses/AlchemyAPIAnnotator-NOTICE.txt solr/licenses/OpenCalaisAnnotator-2.3.1.jar.sha1 solr/licenses/OpenCalaisAnnotator-LICENSE-ASL.txt solr/licenses/OpenCalaisAnnotator-NOTICE.txt solr/licenses/Tagger-2.3.1.jar.sha1 solr/licenses/Tagger-LICENSE-ASL.txt solr/licenses/Tagger-NOTICE.txt solr/licenses/WhitespaceTokenizer-2.3.1.jar.sha1 solr/licenses/WhitespaceTokenizer-LICENSE-ASL.txt solr/licenses/WhitespaceTokenizer-NOTICE.txt solr/licenses/activation-1.1.1.jar.sha1 solr/licenses/activation-LICENSE-CDDL.txt solr/licenses/android-json-0.0.20131108.vaadin1.jar.sha1 solr/licenses/android-json-LICENSE-ASL.txt solr/licenses/android-json-NOTICE.txt solr/licenses/ant-1.8.2.jar.sha1 solr/licenses/ant-LICENSE-ASL.txt solr/licenses/ant-NOTICE.txt solr/licenses/antlr-2.7.7.jar.sha1 solr/licenses/antlr-LICENSE-PD.txt solr/licenses/antlr-NOTICE.txt solr/licenses/antlr4-runtime-4.5.1-1.jar.sha1 solr/licenses/antlr4-runtime-LICENSE-BSD.txt solr/licenses/antlr4-runtime-NOTICE.txt -solr/licenses/apache-mime4j-core-0.7.2.jar.sha1 +solr/licenses/apache-mime4j-core-0.8.1.jar.sha1 solr/licenses/apache-mime4j-core-LICENSE-ASL.txt solr/licenses/apache-mime4j-core-NOTICE.txt -solr/licenses/apache-mime4j-dom-0.7.2.jar.sha1 +solr/licenses/apache-mime4j-dom-0.8.1.jar.sha1 solr/licenses/apache-mime4j-dom-LICENSE-ASL.txt solr/licenses/apache-mime4j-dom-NOTICE.txt solr/licenses/apacheds-core-2.0.0-M15.jar.sha1 solr/licenses/apacheds-core-LICENSE-ASL.txt solr/licenses/apacheds-core-NOTICE.txt solr/licenses/apacheds-core-api-2.0.0-M15.jar.sha1 solr/licenses/apacheds-core-api-LICENSE-ASL.txt solr/licenses/apacheds-core-api-NOTICE.txt solr/licenses/apacheds-core-avl-2.0.0-M15.jar.sha1 solr/licenses/apacheds-core-avl-LICENSE-ASL.txt solr/licenses/apacheds-core-avl-NOTICE.txt solr/licenses/apacheds-core-shared-2.0.0-M15.jar.sha1 solr/licenses/apacheds-core-shared-LICENSE-ASL.txt solr/licenses/apacheds-core-shared-NOTICE.txt solr/licenses/apacheds-i18n-2.0.0-M15.jar.sha1 solr/licenses/apacheds-i18n-LICENSE-ASL.txt solr/licenses/apacheds-i18n-NOTICE.txt solr/licenses/apacheds-interceptor-kerberos-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptor-kerberos-LICENSE-ASL.txt solr/licenses/apacheds-interceptor-kerberos-NOTICE.txt solr/licenses/apacheds-interceptors-admin-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-admin-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-admin-NOTICE.txt solr/licenses/apacheds-interceptors-authn-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-authn-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-authn-NOTICE.txt solr/licenses/apacheds-interceptors-authz-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-authz-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-authz-NOTICE.txt solr/licenses/apacheds-interceptors-changelog-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-changelog-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-changelog-NOTICE.txt solr/licenses/apacheds-interceptors-collective-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-collective-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-collective-NOTICE.txt solr/licenses/apacheds-interceptors-event-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-event-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-event-NOTICE.txt solr/licenses/apacheds-interceptors-exception-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-exception-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-exception-NOTICE.txt solr/licenses/apacheds-interceptors-journal-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-journal-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-journal-NOTICE.txt solr/licenses/apacheds-interceptors-normalization-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-normalization-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-normalization-NOTICE.txt solr/licenses/apacheds-interceptors-operational-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-operational-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-operational-NOTICE.txt solr/licenses/apacheds-interceptors-referral-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-referral-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-referral-NOTICE.txt solr/licenses/apacheds-interceptors-schema-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-schema-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-schema-NOTICE.txt solr/licenses/apacheds-interceptors-subtree-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-subtree-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-subtree-NOTICE.txt solr/licenses/apacheds-interceptors-trigger-2.0.0-M15.jar.sha1 solr/licenses/apacheds-interceptors-trigger-LICENSE-ASL.txt solr/licenses/apacheds-interceptors-trigger-NOTICE.txt solr/licenses/apacheds-jdbm-partition-2.0.0-M15.jar.sha1 solr/licenses/apacheds-jdbm-partition-LICENSE-ASL.txt solr/licenses/apacheds-jdbm-partition-NOTICE.txt solr/licenses/apacheds-jdbm1-2.0.0-M2.jar.sha1 solr/licenses/apacheds-jdbm1-LICENSE-ASL.txt solr/licenses/apacheds-jdbm1-NOTICE.txt solr/licenses/apacheds-kerberos-codec-2.0.0-M15.jar.sha1 solr/licenses/apacheds-kerberos-codec-LICENSE-ASL.txt solr/licenses/apacheds-kerberos-codec-NOTICE.txt solr/licenses/apacheds-ldif-partition-2.0.0-M15.jar.sha1 solr/licenses/apacheds-ldif-partition-LICENSE-ASL.txt solr/licenses/apacheds-ldif-partition-NOTICE.txt solr/licenses/apacheds-mavibot-partition-2.0.0-M15.jar.sha1 solr/licenses/apacheds-mavibot-partition-LICENSE-ASL.txt solr/licenses/apacheds-mavibot-partition-NOTICE.txt solr/licenses/apacheds-protocol-kerberos-2.0.0-M15.jar.sha1 solr/licenses/apacheds-protocol-kerberos-LICENSE-ASL.txt solr/licenses/apacheds-protocol-kerberos-NOTICE.txt solr/licenses/apacheds-protocol-ldap-2.0.0-M15.jar.sha1 solr/licenses/apacheds-protocol-ldap-LICENSE-ASL.txt solr/licenses/apacheds-protocol-ldap-NOTICE.txt solr/licenses/apacheds-protocol-shared-2.0.0-M15.jar.sha1 solr/licenses/apacheds-protocol-shared-LICENSE-ASL.txt solr/licenses/apacheds-protocol-shared-NOTICE.txt solr/licenses/apacheds-xdbm-partition-2.0.0-M15.jar.sha1 solr/licenses/apacheds-xdbm-partition-LICENSE-ASL.txt solr/licenses/apacheds-xdbm-partition-NOTICE.txt solr/licenses/api-all-1.0.0-M20.jar.sha1 solr/licenses/api-all-LICENSE-ASL.txt solr/licenses/api-all-NOTICE.txt +solr/licenses/argparse4j-0.8.1.jar.sha1 +solr/licenses/argparse4j-LICENSE-MIT.txt +solr/licenses/argparse4j-NOTICE.txt solr/licenses/asciidoctor-ant-1.6.0-alpha.5.jar.sha1 solr/licenses/asciidoctor-ant-LICENSE-ASL.txt solr/licenses/asciidoctor-ant-NOTICE.txt solr/licenses/asm-5.1.jar.sha1 solr/licenses/asm-LICENSE-BSD.txt solr/licenses/asm-LICENSE-BSD_LIKE.txt solr/licenses/asm-NOTICE.txt solr/licenses/asm-commons-5.1.jar.sha1 solr/licenses/asm-commons-LICENSE-BSD_LIKE.txt solr/licenses/asm-commons-NOTICE.txt solr/licenses/aspectjrt-1.8.0.jar.sha1 solr/licenses/aspectjrt-LICENSE-EPL.txt -solr/licenses/attributes-binder-1.3.1.jar.sha1 +solr/licenses/attributes-binder-1.3.3.jar.sha1 solr/licenses/attributes-binder-LICENSE-ASL.txt solr/licenses/attributes-binder-NOTICE.txt solr/licenses/avatica-core-1.10.0.jar.sha1 solr/licenses/avatica-core-LICENSE-ASL.txt solr/licenses/avatica-core-NOTICE.txt solr/licenses/bcmail-LICENSE-BSD_LIKE.txt solr/licenses/bcmail-NOTICE.txt -solr/licenses/bcmail-jdk15-1.45.jar.sha1 +solr/licenses/bcmail-jdk15on-1.54.jar.sha1 +solr/licenses/bcpkix-jdk15on-1.54.jar.sha1 +solr/licenses/bcpkix-jdk15on-LICENSE-BSD_LIKE.txt +solr/licenses/bcpkix-jdk15on-NOTICE.txt solr/licenses/bcprov-LICENSE-BSD_LIKE.txt solr/licenses/bcprov-NOTICE.txt -solr/licenses/bcprov-jdk15-1.45.jar.sha1 +solr/licenses/bcprov-jdk15on-1.54.jar.sha1 solr/licenses/boilerpipe-1.1.0.jar.sha1 solr/licenses/boilerpipe-LICENSE-ASL.txt solr/licenses/boilerpipe-NOTICE.txt solr/licenses/byte-buddy-1.6.2.jar.sha1 solr/licenses/byte-buddy-LICENSE-ASL.txt solr/licenses/byte-buddy-NOTICE.txt solr/licenses/caffeine-2.4.0.jar.sha1 solr/licenses/caffeine-LICENSE-ASL.txt solr/licenses/caffeine-NOTICE.txt solr/licenses/calcite-core-1.13.0.jar.sha1 solr/licenses/calcite-core-LICENSE-ASL.txt solr/licenses/calcite-core-NOTICE.txt solr/licenses/calcite-linq4j-1.13.0.jar.sha1 solr/licenses/calcite-linq4j-LICENSE-ASL.txt solr/licenses/calcite-linq4j-NOTICE.txt solr/licenses/carrot2-guava-18.0.jar.sha1 solr/licenses/carrot2-guava-LICENSE-ASL.txt solr/licenses/carrot2-guava-NOTICE.txt -solr/licenses/carrot2-mini-3.15.0.jar.sha1 +solr/licenses/carrot2-mini-3.16.0.jar.sha1 solr/licenses/carrot2-mini-LICENSE-BSD_LIKE.txt solr/licenses/carrot2-mini-NOTICE.txt solr/licenses/commons-beanutils-1.8.3.jar.sha1 solr/licenses/commons-beanutils-LICENSE-ASL.txt solr/licenses/commons-beanutils-NOTICE.txt solr/licenses/commons-cli-1.2.jar.sha1 solr/licenses/commons-cli-LICENSE-ASL.txt solr/licenses/commons-cli-NOTICE.txt solr/licenses/commons-codec-1.10.jar.sha1 solr/licenses/commons-codec-LICENSE-ASL.txt solr/licenses/commons-codec-NOTICE.txt solr/licenses/commons-collections-3.2.2.jar.sha1 solr/licenses/commons-collections-LICENSE-ASL.txt solr/licenses/commons-collections-NOTICE.txt solr/licenses/commons-collections4-4.1.jar.sha1 solr/licenses/commons-collections4-LICENSE-ASL.txt solr/licenses/commons-collections4-NOTICE.txt solr/licenses/commons-compiler-2.7.6.jar.sha1 solr/licenses/commons-compiler-LICENSE-BSD.txt solr/licenses/commons-compiler-NOTICE.txt solr/licenses/commons-compress-1.14.jar.sha1 solr/licenses/commons-compress-LICENSE-ASL.txt solr/licenses/commons-compress-NOTICE.txt solr/licenses/commons-configuration-1.6.jar.sha1 solr/licenses/commons-configuration-LICENSE-ASL.txt solr/licenses/commons-configuration-NOTICE.txt solr/licenses/commons-digester-2.1.jar.sha1 solr/licenses/commons-digester-LICENSE-ASL.txt solr/licenses/commons-digester-NOTICE.txt solr/licenses/commons-exec-1.3.jar.sha1 solr/licenses/commons-exec-LICENSE-ASL.txt solr/licenses/commons-exec-NOTICE.txt -solr/licenses/commons-fileupload-1.3.2.jar.sha1 +solr/licenses/commons-fileupload-1.3.3.jar.sha1 solr/licenses/commons-fileupload-LICENSE-ASL.txt solr/licenses/commons-fileupload-NOTICE.txt solr/licenses/commons-io-2.5.jar.sha1 solr/licenses/commons-io-LICENSE-ASL.txt solr/licenses/commons-io-NOTICE.txt solr/licenses/commons-lang-2.6.jar.sha1 solr/licenses/commons-lang-LICENSE-ASL.txt solr/licenses/commons-lang-NOTICE.txt solr/licenses/commons-lang3-3.6.jar.sha1 solr/licenses/commons-lang3-LICENSE-ASL.txt solr/licenses/commons-lang3-NOTICE.txt solr/licenses/commons-math3-3.6.1.jar.sha1 solr/licenses/commons-math3-LICENSE-ASL.txt solr/licenses/commons-math3-NOTICE.txt solr/licenses/curator-client-2.8.0.jar.sha1 solr/licenses/curator-client-LICENSE-ASL.txt solr/licenses/curator-client-NOTICE.txt solr/licenses/curator-framework-2.8.0.jar.sha1 solr/licenses/curator-framework-LICENSE-ASL.txt solr/licenses/curator-framework-NOTICE.txt solr/licenses/curator-recipes-2.8.0.jar.sha1 solr/licenses/curator-recipes-LICENSE-ASL.txt solr/licenses/curator-recipes-NOTICE.txt solr/licenses/curvesapi-1.04.jar.sha1 solr/licenses/curvesapi-LICENSE-BSD_LIKE.txt solr/licenses/curvesapi-NOTICE.txt solr/licenses/derby-10.9.1.0.jar.sha1 solr/licenses/derby-LICENSE-ASL.txt solr/licenses/derby-NOTICE.txt +solr/licenses/disruptor-3.4.0.jar.sha1 +solr/licenses/disruptor-LICENSE-ASL.txt +solr/licenses/disruptor-NOTICE.txt solr/licenses/dom4j-1.6.1.jar.sha1 solr/licenses/dom4j-LICENSE-BSD_LIKE.txt solr/licenses/dom4j-NOTICE.txt solr/licenses/ehcache-core-2.4.4.jar.sha1 solr/licenses/ehcache-core-LICENSE-ASL.txt solr/licenses/ehcache-core-NOTICE.txt solr/licenses/eigenbase-properties-1.1.5.jar.sha1 solr/licenses/eigenbase-properties-LICENSE-ASL.txt solr/licenses/eigenbase-properties-NOTICE.txt -solr/licenses/fontbox-2.0.6.jar.sha1 +solr/licenses/fontbox-2.0.8.jar.sha1 solr/licenses/fontbox-LICENSE-ASL.txt solr/licenses/fontbox-NOTICE.txt solr/licenses/gimap-1.5.1.jar.sha1 solr/licenses/gimap-LICENSE-CDDL.txt solr/licenses/gmetric4j-1.0.7.jar.sha1 solr/licenses/gmetric4j-LICENSE-BSD.txt solr/licenses/gmetric4j-NOTICE.txt solr/licenses/guava-14.0.1.jar.sha1 solr/licenses/guava-LICENSE-ASL.txt solr/licenses/guava-NOTICE.txt solr/licenses/hadoop-annotations-2.7.4.jar.sha1 solr/licenses/hadoop-annotations-LICENSE-ASL.txt solr/licenses/hadoop-annotations-NOTICE.txt solr/licenses/hadoop-auth-2.7.4.jar.sha1 solr/licenses/hadoop-auth-LICENSE-ASL.txt solr/licenses/hadoop-auth-NOTICE.txt solr/licenses/hadoop-common-2.7.4-tests.jar.sha1 solr/licenses/hadoop-common-2.7.4.jar.sha1 solr/licenses/hadoop-common-LICENSE-ASL.txt solr/licenses/hadoop-common-NOTICE.txt solr/licenses/hadoop-common-tests-LICENSE-ASL.txt solr/licenses/hadoop-common-tests-NOTICE.txt solr/licenses/hadoop-hdfs-2.7.4-tests.jar.sha1 solr/licenses/hadoop-hdfs-2.7.4.jar.sha1 solr/licenses/hadoop-hdfs-LICENSE-ASL.txt solr/licenses/hadoop-hdfs-NOTICE.txt solr/licenses/hadoop-hdfs-tests-LICENSE-ASL.txt solr/licenses/hadoop-hdfs-tests-NOTICE.txt solr/licenses/hadoop-minikdc-2.7.4.jar.sha1 solr/licenses/hadoop-minikdc-LICENSE-ASL.txt solr/licenses/hadoop-minikdc-NOTICE.txt -solr/licenses/hppc-0.7.1.jar.sha1 +solr/licenses/hppc-0.8.1.jar.sha1 solr/licenses/hppc-LICENSE-ASL.txt solr/licenses/hppc-NOTICE.txt solr/licenses/hsqldb-2.4.0.jar.sha1 solr/licenses/hsqldb-LICENSE-BSD_LIKE.txt solr/licenses/hsqldb-NOTICE.txt solr/licenses/htrace-core-3.2.0-incubating.jar.sha1 solr/licenses/htrace-core-LICENSE-ASL.txt solr/licenses/htrace-core-NOTICE.txt solr/licenses/httpclient-4.5.3.jar.sha1 solr/licenses/httpclient-LICENSE-ASL.txt solr/licenses/httpclient-NOTICE.txt solr/licenses/httpcore-4.4.6.jar.sha1 solr/licenses/httpcore-LICENSE-ASL.txt solr/licenses/httpcore-NOTICE.txt solr/licenses/httpmime-4.5.3.jar.sha1 solr/licenses/httpmime-LICENSE-ASL.txt solr/licenses/httpmime-NOTICE.txt -solr/licenses/icu4j-59.1.jar.sha1 +solr/licenses/icu4j-61.1.jar.sha1 solr/licenses/icu4j-LICENSE-BSD_LIKE.txt solr/licenses/icu4j-NOTICE.txt solr/licenses/isoparser-1.1.18.jar.sha1 solr/licenses/isoparser-LICENSE-ASL.txt solr/licenses/isoparser-NOTICE.txt solr/licenses/jackcess-2.1.8.jar.sha1 solr/licenses/jackcess-LICENSE-ASL.txt solr/licenses/jackcess-NOTICE.txt -solr/licenses/jackson-annotations-2.5.4.jar.sha1 +solr/licenses/jackcess-encrypt-2.1.4.jar.sha1 +solr/licenses/jackcess-encrypt-LICENSE-ASL.txt +solr/licenses/jackcess-encrypt-NOTICE.txt +solr/licenses/jackson-annotations-2.9.5.jar.sha1 solr/licenses/jackson-annotations-LICENSE-ASL.txt solr/licenses/jackson-annotations-NOTICE.txt -solr/licenses/jackson-core-2.5.4.jar.sha1 +solr/licenses/jackson-core-2.9.5.jar.sha1 solr/licenses/jackson-core-LICENSE-ASL.txt solr/licenses/jackson-core-NOTICE.txt solr/licenses/jackson-core-asl-1.9.13.jar.sha1 solr/licenses/jackson-core-asl-LICENSE-ASL.txt solr/licenses/jackson-core-asl-NOTICE.txt -solr/licenses/jackson-databind-2.5.4.jar.sha1 +solr/licenses/jackson-databind-2.9.5.jar.sha1 solr/licenses/jackson-databind-LICENSE-ASL.txt solr/licenses/jackson-databind-NOTICE.txt -solr/licenses/jackson-dataformat-smile-2.5.4.jar.sha1 +solr/licenses/jackson-dataformat-smile-2.9.5.jar.sha1 solr/licenses/jackson-dataformat-smile-LICENSE-ASL.txt solr/licenses/jackson-dataformat-smile-NOTICE.txt +solr/licenses/jackson-jq-0.0.8.jar.sha1 +solr/licenses/jackson-jq-LICENSE-ASL.txt +solr/licenses/jackson-jq-NOTICE.txt solr/licenses/jackson-mapper-asl-1.9.13.jar.sha1 solr/licenses/jackson-mapper-asl-LICENSE-ASL.txt solr/licenses/jackson-mapper-asl-NOTICE.txt solr/licenses/janino-2.7.6.jar.sha1 solr/licenses/janino-LICENSE-BSD.txt solr/licenses/janino-NOTICE.txt solr/licenses/java-libpst-0.8.1.jar.sha1 solr/licenses/java-libpst-LICENSE-ASL.txt solr/licenses/java-libpst-NOTICE.txt solr/licenses/javax.mail-1.5.1.jar.sha1 solr/licenses/javax.mail-LICENSE-CDDL.txt solr/licenses/javax.servlet-api-3.1.0.jar.sha1 solr/licenses/javax.servlet-api-LICENSE-CDDL.txt solr/licenses/javax.servlet-api-NOTICE.txt -solr/licenses/jcl-over-slf4j-1.7.7.jar.sha1 +solr/licenses/jcl-over-slf4j-1.7.24.jar.sha1 solr/licenses/jcl-over-slf4j-LICENSE-MIT.txt solr/licenses/jcl-over-slf4j-NOTICE.txt -solr/licenses/jdom-1.0.jar.sha1 +solr/licenses/jdom-2.0.2.jar.sha1 solr/licenses/jdom-LICENSE-BSD_LIKE.txt solr/licenses/jdom-NOTICE.txt solr/licenses/jempbox-1.8.13.jar.sha1 solr/licenses/jempbox-LICENSE-ASL.txt solr/licenses/jempbox-NOTICE.txt solr/licenses/jersey-core-1.9.jar.sha1 solr/licenses/jersey-core-LICENSE-CDDL.txt solr/licenses/jersey-server-1.9.jar.sha1 solr/licenses/jersey-server-LICENSE-CDDL.txt solr/licenses/jetty-6.1.26.jar.sha1 solr/licenses/jetty-LICENSE-ASL.txt solr/licenses/jetty-NOTICE.txt -solr/licenses/jetty-continuation-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-deploy-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-http-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-io-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-jmx-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-rewrite-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-security-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-server-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-servlet-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-servlets-9.3.20.v20170531.jar.sha1 +solr/licenses/jetty-continuation-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-deploy-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-http-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-io-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-jmx-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-rewrite-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-security-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-server-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-servlet-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-servlets-9.4.10.v20180503.jar.sha1 solr/licenses/jetty-sslengine-6.1.26.jar.sha1 solr/licenses/jetty-util-6.1.26.jar.sha1 -solr/licenses/jetty-util-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-webapp-9.3.20.v20170531.jar.sha1 -solr/licenses/jetty-xml-9.3.20.v20170531.jar.sha1 +solr/licenses/jetty-util-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-webapp-9.4.10.v20180503.jar.sha1 +solr/licenses/jetty-xml-9.4.10.v20180503.jar.sha1 solr/licenses/jmatio-1.2.jar.sha1 solr/licenses/jmatio-LICENSE-BSD.txt solr/licenses/jmatio-NOTICE.txt solr/licenses/joda-time-2.2.jar.sha1 solr/licenses/joda-time-LICENSE-ASL.txt solr/licenses/joda-time-NOTICE.txt solr/licenses/jsonic-1.2.7.jar.sha1 solr/licenses/jsonic-LICENSE-ASL.txt solr/licenses/jsonic-NOTICE.txt solr/licenses/jsoup-1.8.2.jar.sha1 solr/licenses/jsoup-LICENSE-MIT.txt -solr/licenses/jul-to-slf4j-1.7.7.jar.sha1 +solr/licenses/jul-to-slf4j-1.7.24.jar.sha1 solr/licenses/jul-to-slf4j-LICENSE-MIT.txt solr/licenses/jul-to-slf4j-NOTICE.txt solr/licenses/junit-4.10.jar.sha1 solr/licenses/junit-LICENSE-CPL.txt solr/licenses/junit-NOTICE.txt -solr/licenses/junit4-ant-2.5.3.jar.sha1 +solr/licenses/junit4-ant-2.6.0.jar.sha1 solr/licenses/junit4-ant-LICENSE-ASL.txt solr/licenses/junit4-ant-NOTICE.txt solr/licenses/juniversalchardet-1.0.3.jar.sha1 solr/licenses/juniversalchardet-LICENSE-MPL.txt solr/licenses/juniversalchardet-NOTICE.txt solr/licenses/langdetect-1.1-20120112.jar.sha1 solr/licenses/langdetect-LICENSE-ASL.txt solr/licenses/langdetect-NOTICE.txt -solr/licenses/log4j-1.2.17.jar.sha1 +solr/licenses/log4j-1.2-api-2.11.0.jar.sha1 solr/licenses/log4j-LICENSE-ASL.txt solr/licenses/log4j-NOTICE.txt -solr/licenses/metadata-extractor-2.9.1.jar.sha1 +solr/licenses/log4j-api-2.11.0.jar.sha1 +solr/licenses/log4j-api-LICENSE-ASL.txt +solr/licenses/log4j-api-NOTICE.txt +solr/licenses/log4j-core-2.11.0.jar.sha1 +solr/licenses/log4j-core-LICENSE-ASL.txt +solr/licenses/log4j-core-NOTICE.txt +solr/licenses/log4j-slf4j-LICENSE-ASL.txt +solr/licenses/log4j-slf4j-NOTICE.txt +solr/licenses/log4j-slf4j-impl-2.11.0.jar.sha1 +solr/licenses/metadata-extractor-2.10.1.jar.sha1 solr/licenses/metadata-extractor-LICENSE-PD.txt -solr/licenses/metrics-core-3.2.2.jar.sha1 +solr/licenses/metrics-core-3.2.6.jar.sha1 solr/licenses/metrics-core-LICENSE-ASL.txt solr/licenses/metrics-core-NOTICE.txt -solr/licenses/metrics-ganglia-3.2.2.jar.sha1 +solr/licenses/metrics-ganglia-3.2.6.jar.sha1 solr/licenses/metrics-ganglia-LICENSE-ASL.txt solr/licenses/metrics-ganglia-NOTICE.txt -solr/licenses/metrics-graphite-3.2.2.jar.sha1 +solr/licenses/metrics-graphite-3.2.6.jar.sha1 solr/licenses/metrics-graphite-LICENSE-ASL.txt solr/licenses/metrics-graphite-NOTICE.txt solr/licenses/metrics-jetty-LICENSE-ASL.txt solr/licenses/metrics-jetty-NOTICE.txt -solr/licenses/metrics-jetty9-3.2.2.jar.sha1 +solr/licenses/metrics-jetty9-3.2.6.jar.sha1 solr/licenses/metrics-json-LICENSE-ASL.txt solr/licenses/metrics-json-NOTICE.txt -solr/licenses/metrics-jvm-3.2.2.jar.sha1 +solr/licenses/metrics-jvm-3.2.6.jar.sha1 solr/licenses/metrics-jvm-LICENSE-ASL.txt solr/licenses/metrics-jvm-NOTICE.txt solr/licenses/metrics-servlets-LICENSE-ASL.txt solr/licenses/metrics-servlets-NOTICE.txt solr/licenses/mina-core-2.0.0-M5.jar.sha1 solr/licenses/mina-core-LICENSE-ASL.txt solr/licenses/mina-core-NOTICE.txt solr/licenses/mockito-core-2.6.2.jar.sha1 solr/licenses/mockito-core-LICENSE-MIT.txt -solr/licenses/morfologik-fsa-2.1.1.jar.sha1 +solr/licenses/morfologik-fsa-2.1.5.jar.sha1 solr/licenses/morfologik-fsa-LICENSE-BSD.txt solr/licenses/morfologik-fsa-NOTICE.txt -solr/licenses/morfologik-polish-2.1.1.jar.sha1 +solr/licenses/morfologik-polish-2.1.5.jar.sha1 solr/licenses/morfologik-polish-LICENSE-BSD.txt solr/licenses/morfologik-polish-NOTICE.txt -solr/licenses/morfologik-stemming-2.1.1.jar.sha1 +solr/licenses/morfologik-stemming-2.1.5.jar.sha1 solr/licenses/morfologik-stemming-LICENSE-BSD.txt solr/licenses/morfologik-stemming-NOTICE.txt solr/licenses/netty-all-4.0.36.Final.jar.sha1 solr/licenses/netty-all-LICENSE-ASL.txt solr/licenses/netty-all-NOTICE.txt solr/licenses/noggit-0.8.jar.sha1 solr/licenses/noggit-LICENSE-ASL.txt solr/licenses/noggit-NOTICE.txt solr/licenses/objenesis-2.5.jar.sha1 solr/licenses/objenesis-LICENSE-ASL.txt solr/licenses/objenesis-NOTICE.txt +solr/licenses/opennlp-maxent-3.0.3.jar.sha1 +solr/licenses/opennlp-maxent-LICENSE-ASL.txt +solr/licenses/opennlp-maxent-NOTICE.txt +solr/licenses/opennlp-tools-1.8.3.jar.sha1 +solr/licenses/opennlp-tools-LICENSE-ASL.txt +solr/licenses/opennlp-tools-NOTICE.txt solr/licenses/org.restlet-2.3.0.jar.sha1 solr/licenses/org.restlet-LICENSE-ASL.txt solr/licenses/org.restlet-NOTICE.txt solr/licenses/org.restlet.ext.servlet-2.3.0.jar.sha1 solr/licenses/org.restlet.ext.servlet-LICENSE-ASL.txt solr/licenses/org.restlet.ext.servlet-NOTICE.txt -solr/licenses/pdfbox-2.0.6.jar.sha1 +solr/licenses/pdfbox-2.0.8.jar.sha1 solr/licenses/pdfbox-LICENSE-ASL.txt solr/licenses/pdfbox-NOTICE.txt -solr/licenses/pdfbox-tools-2.0.6.jar.sha1 +solr/licenses/pdfbox-tools-2.0.8.jar.sha1 solr/licenses/pdfbox-tools-LICENSE-ASL.txt solr/licenses/pdfbox-tools-NOTICE.txt -solr/licenses/poi-3.17-beta1.jar.sha1 +solr/licenses/poi-3.17.jar.sha1 solr/licenses/poi-LICENSE-ASL.txt solr/licenses/poi-NOTICE.txt -solr/licenses/poi-ooxml-3.17-beta1.jar.sha1 +solr/licenses/poi-ooxml-3.17.jar.sha1 solr/licenses/poi-ooxml-LICENSE-ASL.txt solr/licenses/poi-ooxml-NOTICE.txt -solr/licenses/poi-ooxml-schemas-3.17-beta1.jar.sha1 +solr/licenses/poi-ooxml-schemas-3.17.jar.sha1 solr/licenses/poi-ooxml-schemas-LICENSE-ASL.txt solr/licenses/poi-ooxml-schemas-NOTICE.txt -solr/licenses/poi-scratchpad-3.17-beta1.jar.sha1 +solr/licenses/poi-scratchpad-3.17.jar.sha1 solr/licenses/poi-scratchpad-LICENSE-ASL.txt solr/licenses/poi-scratchpad-NOTICE.txt solr/licenses/presto-parser-LICENSE-ASL.txt solr/licenses/presto-parser-NOTICE.txt solr/licenses/protobuf-java-3.1.0.jar.sha1 solr/licenses/protobuf-java-LICENSE-BSD.txt solr/licenses/protobuf-java-NOTICE.txt -solr/licenses/randomizedtesting-runner-2.5.3.jar.sha1 +solr/licenses/randomizedtesting-runner-2.6.0.jar.sha1 solr/licenses/randomizedtesting-runner-LICENSE-ASL.txt solr/licenses/randomizedtesting-runner-NOTICE.txt solr/licenses/rome-1.5.1.jar.sha1 solr/licenses/rome-LICENSE-ASL.txt solr/licenses/rome-NOTICE.txt +solr/licenses/rome-utils-1.5.1.jar.sha1 +solr/licenses/rome-utils-LICENSE-ASL.txt +solr/licenses/rome-utils-NOTICE.txt +solr/licenses/rrd4j-3.2.jar.sha1 +solr/licenses/rrd4j-LICENSE-ASL.txt +solr/licenses/rrd4j-NOTICE.txt solr/licenses/servlet-api-LICENSE-CDDL.txt solr/licenses/servlet-api-NOTICE.txt solr/licenses/simple-xml-2.7.1.jar.sha1 solr/licenses/simple-xml-LICENSE-ASL.txt solr/licenses/simple-xml-NOTICE.txt +solr/licenses/simpleclient-0.2.0.jar.sha1 +solr/licenses/simpleclient-LICENSE-ASL.txt +solr/licenses/simpleclient-NOTICE.txt +solr/licenses/simpleclient_common-0.2.0.jar.sha1 +solr/licenses/simpleclient_common-LICENSE-ASL.txt +solr/licenses/simpleclient_common-NOTICE.txt +solr/licenses/simpleclient_httpserver-0.2.0.jar.sha1 +solr/licenses/simpleclient_httpserver-LICENSE-ASL.txt +solr/licenses/simpleclient_httpserver-NOTICE.txt solr/licenses/slf4j-LICENSE-MIT.txt solr/licenses/slf4j-NOTICE.txt -solr/licenses/slf4j-api-1.7.7.jar.sha1 -solr/licenses/slf4j-log4j12-1.7.7.jar.sha1 -solr/licenses/slf4j-simple-1.7.7.jar.sha1 +solr/licenses/slf4j-api-1.7.24.jar.sha1 +solr/licenses/slf4j-simple-1.7.24.jar.sha1 solr/licenses/slice-LICENSE-ASL.txt solr/licenses/slice-NOTICE.txt -solr/licenses/spatial4j-0.6.jar.sha1 +solr/licenses/spatial4j-0.7.jar.sha1 solr/licenses/spatial4j-LICENSE-ASL.txt solr/licenses/spatial4j-NOTICE.txt solr/licenses/start.jar.sha1 solr/licenses/stax2-api-3.1.4.jar.sha1 solr/licenses/stax2-api-LICENSE-BSD.txt solr/licenses/stax2-api-NOTICE.txt solr/licenses/t-digest-3.1.jar.sha1 solr/licenses/t-digest-LICENSE-ASL.txt solr/licenses/t-digest-NOTICE.txt solr/licenses/tagsoup-1.2.1.jar.sha1 solr/licenses/tagsoup-LICENSE-ASL.txt solr/licenses/tagsoup-NOTICE.txt -solr/licenses/tika-core-1.16.jar.sha1 +solr/licenses/tika-core-1.17.jar.sha1 solr/licenses/tika-core-LICENSE-ASL.txt solr/licenses/tika-core-NOTICE.txt -solr/licenses/tika-java7-1.16.jar.sha1 +solr/licenses/tika-java7-1.17.jar.sha1 solr/licenses/tika-java7-LICENSE-ASL.txt solr/licenses/tika-java7-NOTICE.txt -solr/licenses/tika-parsers-1.16.jar.sha1 +solr/licenses/tika-parsers-1.17.jar.sha1 solr/licenses/tika-parsers-LICENSE-ASL.txt solr/licenses/tika-parsers-NOTICE.txt -solr/licenses/tika-xmp-1.16.jar.sha1 +solr/licenses/tika-xmp-1.17.jar.sha1 solr/licenses/tika-xmp-LICENSE-ASL.txt solr/licenses/tika-xmp-NOTICE.txt solr/licenses/uimaj-core-2.3.1.jar.sha1 solr/licenses/uimaj-core-LICENSE-ASL.txt solr/licenses/uimaj-core-NOTICE.txt solr/licenses/velocity-1.7.jar.sha1 solr/licenses/velocity-LICENSE-ASL.txt solr/licenses/velocity-NOTICE.txt solr/licenses/velocity-tools-2.0.jar.sha1 solr/licenses/velocity-tools-LICENSE-ASL.txt solr/licenses/velocity-tools-NOTICE.txt solr/licenses/vorbis-java-core-0.8.jar.sha1 solr/licenses/vorbis-java-core-LICENSE-BSD_LIKE.txt solr/licenses/vorbis-java-core-NOTICE.txt solr/licenses/vorbis-java-tika-0.8.jar.sha1 solr/licenses/vorbis-java-tika-LICENSE-BSD_LIKE.txt solr/licenses/vorbis-java-tika-NOTICE.txt solr/licenses/woodstox-core-asl-4.4.1.jar.sha1 solr/licenses/woodstox-core-asl-LICENSE-ASL.txt solr/licenses/woodstox-core-asl-NOTICE.txt solr/licenses/xercesImpl-2.9.1.jar.sha1 solr/licenses/xercesImpl-LICENSE-ASL.txt solr/licenses/xercesImpl-NOTICE.txt solr/licenses/xmlbeans-2.6.0.jar.sha1 solr/licenses/xmlbeans-LICENSE-ASL.txt solr/licenses/xmlbeans-NOTICE.txt -solr/licenses/xmpcore-5.1.2.jar.sha1 +solr/licenses/xmpcore-5.1.3.jar.sha1 solr/licenses/xmpcore-LICENSE-BSD.txt solr/licenses/xmpcore-NOTICE.txt solr/licenses/xz-1.6.jar.sha1 solr/licenses/xz-LICENSE-PD.txt solr/licenses/xz-NOTICE.txt -solr/licenses/zookeeper-3.4.10.jar.sha1 +solr/licenses/zookeeper-3.4.11.jar.sha1 solr/licenses/zookeeper-LICENSE-ASL.txt solr/licenses/zookeeper-NOTICE.txt solr/server/README.txt solr/server/contexts/solr-jetty-context.xml solr/server/etc/jetty-http.xml solr/server/etc/jetty-https.xml solr/server/etc/jetty-ssl.xml solr/server/etc/jetty.xml solr/server/etc/webdefault.xml -solr/server/lib/ext/jcl-over-slf4j-1.7.7.jar -solr/server/lib/ext/jul-to-slf4j-1.7.7.jar -solr/server/lib/ext/log4j-1.2.17.jar -solr/server/lib/ext/slf4j-api-1.7.7.jar -solr/server/lib/ext/slf4j-log4j12-1.7.7.jar +solr/server/lib/ext/disruptor-3.4.0.jar +solr/server/lib/ext/jcl-over-slf4j-1.7.24.jar +solr/server/lib/ext/jul-to-slf4j-1.7.24.jar +solr/server/lib/ext/log4j-1.2-api-2.11.0.jar +solr/server/lib/ext/log4j-api-2.11.0.jar +solr/server/lib/ext/log4j-core-2.11.0.jar +solr/server/lib/ext/log4j-slf4j-impl-2.11.0.jar +solr/server/lib/ext/slf4j-api-1.7.24.jar solr/server/lib/gmetric4j-1.0.7.jar solr/server/lib/javax.servlet-api-3.1.0.jar -solr/server/lib/jetty-continuation-9.3.20.v20170531.jar -solr/server/lib/jetty-deploy-9.3.20.v20170531.jar -solr/server/lib/jetty-http-9.3.20.v20170531.jar -solr/server/lib/jetty-io-9.3.20.v20170531.jar -solr/server/lib/jetty-jmx-9.3.20.v20170531.jar -solr/server/lib/jetty-rewrite-9.3.20.v20170531.jar -solr/server/lib/jetty-security-9.3.20.v20170531.jar -solr/server/lib/jetty-server-9.3.20.v20170531.jar -solr/server/lib/jetty-servlet-9.3.20.v20170531.jar -solr/server/lib/jetty-servlets-9.3.20.v20170531.jar -solr/server/lib/jetty-util-9.3.20.v20170531.jar -solr/server/lib/jetty-webapp-9.3.20.v20170531.jar -solr/server/lib/jetty-xml-9.3.20.v20170531.jar -solr/server/lib/metrics-core-3.2.2.jar -solr/server/lib/metrics-ganglia-3.2.2.jar -solr/server/lib/metrics-graphite-3.2.2.jar -solr/server/lib/metrics-jetty9-3.2.2.jar -solr/server/lib/metrics-jvm-3.2.2.jar +solr/server/lib/jetty-continuation-9.4.10.v20180503.jar +solr/server/lib/jetty-deploy-9.4.10.v20180503.jar +solr/server/lib/jetty-http-9.4.10.v20180503.jar +solr/server/lib/jetty-io-9.4.10.v20180503.jar +solr/server/lib/jetty-jmx-9.4.10.v20180503.jar +solr/server/lib/jetty-rewrite-9.4.10.v20180503.jar +solr/server/lib/jetty-security-9.4.10.v20180503.jar +solr/server/lib/jetty-server-9.4.10.v20180503.jar +solr/server/lib/jetty-servlet-9.4.10.v20180503.jar +solr/server/lib/jetty-servlets-9.4.10.v20180503.jar +solr/server/lib/jetty-util-9.4.10.v20180503.jar +solr/server/lib/jetty-webapp-9.4.10.v20180503.jar +solr/server/lib/jetty-xml-9.4.10.v20180503.jar +solr/server/lib/metrics-core-3.2.6.jar +solr/server/lib/metrics-ganglia-3.2.6.jar +solr/server/lib/metrics-graphite-3.2.6.jar +solr/server/lib/metrics-jetty9-3.2.6.jar +solr/server/lib/metrics-jvm-3.2.6.jar solr/server/modules/http.mod solr/server/modules/https.mod solr/server/modules/server.mod solr/server/modules/ssl.mod solr/server/resources/jetty-logging.properties -solr/server/resources/log4j.properties -solr/server/resources/log4j.properties.bak -solr/server/scripts/cloud-scripts/log4j.properties +solr/server/resources/log4j2.xml +solr/server/scripts/cloud-scripts/log4j2.xml solr/server/scripts/cloud-scripts/snapshotscli.sh solr/server/scripts/cloud-scripts/zkcli.bat solr/server/scripts/cloud-scripts/zkcli.sh solr/server/solr-webapp/webapp/WEB-INF/lib/antlr4-runtime-4.5.1-1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/asm-5.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/asm-commons-5.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/avatica-core-1.10.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/caffeine-2.4.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-core-1.13.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-linq4j-1.13.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-cli-1.2.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-codec-1.10.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-collections-3.2.2.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-compiler-2.7.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-configuration-1.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-exec-1.3.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/commons-fileupload-1.3.2.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/commons-fileupload-1.3.3.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-io-2.5.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang-2.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang3-3.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-math3-3.6.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/curator-client-2.8.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/curator-framework-2.8.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/curator-recipes-2.8.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/disruptor-3.4.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/dom4j-1.6.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/eigenbase-properties-1.1.5.jar solr/server/solr-webapp/webapp/WEB-INF/lib/guava-14.0.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-annotations-2.7.4.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-auth-2.7.4.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-common-2.7.4.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-hdfs-2.7.4.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/hppc-0.7.1.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/hppc-0.8.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/htrace-core-3.2.0-incubating.jar solr/server/solr-webapp/webapp/WEB-INF/lib/httpclient-4.5.3.jar solr/server/solr-webapp/webapp/WEB-INF/lib/httpcore-4.4.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/httpmime-4.5.3.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-annotations-2.5.4.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.5.4.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-annotations-2.9.5.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.9.5.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-asl-1.9.13.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-databind-2.5.4.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.5.4.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-databind-2.9.5.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.9.5.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar solr/server/solr-webapp/webapp/WEB-INF/lib/janino-2.7.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/joda-time-2.2.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-analyzers-common-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-analyzers-kuromoji-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-analyzers-phonetic-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-backward-codecs-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-classification-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-codecs-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-core-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-expressions-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-grouping-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-highlighter-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-join-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-memory-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-misc-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-queries-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-queryparser-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-sandbox-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-spatial-extras-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-spatial3d-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/lucene-suggest-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/noggit-0.8.jar solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet-2.3.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet.ext.servlet-2.3.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/protobuf-java-3.1.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/rrd4j-3.2.jar solr/server/solr-webapp/webapp/WEB-INF/lib/solr-core-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/solr-solrj-%%PORTVERSION%%.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/spatial4j-0.6.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/spatial4j-0.7.jar solr/server/solr-webapp/webapp/WEB-INF/lib/stax2-api-3.1.4.jar solr/server/solr-webapp/webapp/WEB-INF/lib/t-digest-3.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/woodstox-core-asl-4.4.1.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/zookeeper-3.4.10.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/zookeeper-3.4.11.jar solr/server/solr-webapp/webapp/WEB-INF/web.xml solr/server/solr-webapp/webapp/css/angular/analysis.css solr/server/solr-webapp/webapp/css/angular/chosen.css solr/server/solr-webapp/webapp/css/angular/cloud.css solr/server/solr-webapp/webapp/css/angular/collections.css solr/server/solr-webapp/webapp/css/angular/common.css solr/server/solr-webapp/webapp/css/angular/cores.css solr/server/solr-webapp/webapp/css/angular/dashboard.css solr/server/solr-webapp/webapp/css/angular/dataimport.css solr/server/solr-webapp/webapp/css/angular/documents.css solr/server/solr-webapp/webapp/css/angular/files.css solr/server/solr-webapp/webapp/css/angular/index.css solr/server/solr-webapp/webapp/css/angular/java-properties.css solr/server/solr-webapp/webapp/css/angular/logging.css solr/server/solr-webapp/webapp/css/angular/menu.css solr/server/solr-webapp/webapp/css/angular/plugins.css solr/server/solr-webapp/webapp/css/angular/query.css solr/server/solr-webapp/webapp/css/angular/replication.css solr/server/solr-webapp/webapp/css/angular/schema.css solr/server/solr-webapp/webapp/css/angular/segments.css solr/server/solr-webapp/webapp/css/angular/stream.css +solr/server/solr-webapp/webapp/css/angular/suggestions.css solr/server/solr-webapp/webapp/css/angular/threads.css solr/server/solr-webapp/webapp/favicon.ico -solr/server/solr-webapp/webapp/img/ZeroClipboard.swf solr/server/solr-webapp/webapp/img/chosen-sprite-2x.png solr/server/solr-webapp/webapp/img/chosen-sprite.png solr/server/solr-webapp/webapp/img/div.gif solr/server/solr-webapp/webapp/img/favicon.ico solr/server/solr-webapp/webapp/img/filetypes/7z.png solr/server/solr-webapp/webapp/img/filetypes/README solr/server/solr-webapp/webapp/img/filetypes/ai.png solr/server/solr-webapp/webapp/img/filetypes/aiff.png solr/server/solr-webapp/webapp/img/filetypes/asc.png solr/server/solr-webapp/webapp/img/filetypes/audio.png solr/server/solr-webapp/webapp/img/filetypes/bin.png solr/server/solr-webapp/webapp/img/filetypes/bz2.png solr/server/solr-webapp/webapp/img/filetypes/c.png solr/server/solr-webapp/webapp/img/filetypes/cfc.png solr/server/solr-webapp/webapp/img/filetypes/cfm.png solr/server/solr-webapp/webapp/img/filetypes/chm.png solr/server/solr-webapp/webapp/img/filetypes/class.png solr/server/solr-webapp/webapp/img/filetypes/conf.png solr/server/solr-webapp/webapp/img/filetypes/cpp.png solr/server/solr-webapp/webapp/img/filetypes/cs.png solr/server/solr-webapp/webapp/img/filetypes/css.png solr/server/solr-webapp/webapp/img/filetypes/csv.png solr/server/solr-webapp/webapp/img/filetypes/deb.png solr/server/solr-webapp/webapp/img/filetypes/divx.png solr/server/solr-webapp/webapp/img/filetypes/doc.png solr/server/solr-webapp/webapp/img/filetypes/dot.png solr/server/solr-webapp/webapp/img/filetypes/eml.png solr/server/solr-webapp/webapp/img/filetypes/enc.png solr/server/solr-webapp/webapp/img/filetypes/file.png solr/server/solr-webapp/webapp/img/filetypes/gif.png solr/server/solr-webapp/webapp/img/filetypes/gz.png solr/server/solr-webapp/webapp/img/filetypes/hlp.png solr/server/solr-webapp/webapp/img/filetypes/htm.png solr/server/solr-webapp/webapp/img/filetypes/html.png solr/server/solr-webapp/webapp/img/filetypes/image.png solr/server/solr-webapp/webapp/img/filetypes/iso.png solr/server/solr-webapp/webapp/img/filetypes/jar.png solr/server/solr-webapp/webapp/img/filetypes/java.png solr/server/solr-webapp/webapp/img/filetypes/jpeg.png solr/server/solr-webapp/webapp/img/filetypes/jpg.png solr/server/solr-webapp/webapp/img/filetypes/js.png solr/server/solr-webapp/webapp/img/filetypes/lua.png solr/server/solr-webapp/webapp/img/filetypes/m.png solr/server/solr-webapp/webapp/img/filetypes/mm.png solr/server/solr-webapp/webapp/img/filetypes/mov.png solr/server/solr-webapp/webapp/img/filetypes/mp3.png solr/server/solr-webapp/webapp/img/filetypes/mpg.png solr/server/solr-webapp/webapp/img/filetypes/odc.png solr/server/solr-webapp/webapp/img/filetypes/odf.png solr/server/solr-webapp/webapp/img/filetypes/odg.png solr/server/solr-webapp/webapp/img/filetypes/odi.png solr/server/solr-webapp/webapp/img/filetypes/odp.png solr/server/solr-webapp/webapp/img/filetypes/ods.png solr/server/solr-webapp/webapp/img/filetypes/odt.png solr/server/solr-webapp/webapp/img/filetypes/ogg.png solr/server/solr-webapp/webapp/img/filetypes/pdf.png solr/server/solr-webapp/webapp/img/filetypes/pgp.png solr/server/solr-webapp/webapp/img/filetypes/php.png solr/server/solr-webapp/webapp/img/filetypes/pl.png solr/server/solr-webapp/webapp/img/filetypes/png.png solr/server/solr-webapp/webapp/img/filetypes/ppt.png solr/server/solr-webapp/webapp/img/filetypes/ps.png solr/server/solr-webapp/webapp/img/filetypes/py.png solr/server/solr-webapp/webapp/img/filetypes/ram.png solr/server/solr-webapp/webapp/img/filetypes/rar.png solr/server/solr-webapp/webapp/img/filetypes/rb.png solr/server/solr-webapp/webapp/img/filetypes/rm.png solr/server/solr-webapp/webapp/img/filetypes/rpm.png solr/server/solr-webapp/webapp/img/filetypes/rtf.png solr/server/solr-webapp/webapp/img/filetypes/sig.png solr/server/solr-webapp/webapp/img/filetypes/sql.png solr/server/solr-webapp/webapp/img/filetypes/swf.png solr/server/solr-webapp/webapp/img/filetypes/sxc.png solr/server/solr-webapp/webapp/img/filetypes/sxd.png solr/server/solr-webapp/webapp/img/filetypes/sxi.png solr/server/solr-webapp/webapp/img/filetypes/sxw.png solr/server/solr-webapp/webapp/img/filetypes/tar.png solr/server/solr-webapp/webapp/img/filetypes/tex.png solr/server/solr-webapp/webapp/img/filetypes/tgz.png solr/server/solr-webapp/webapp/img/filetypes/txt.png solr/server/solr-webapp/webapp/img/filetypes/vcf.png solr/server/solr-webapp/webapp/img/filetypes/video.png solr/server/solr-webapp/webapp/img/filetypes/vsd.png solr/server/solr-webapp/webapp/img/filetypes/wav.png solr/server/solr-webapp/webapp/img/filetypes/wma.png solr/server/solr-webapp/webapp/img/filetypes/wmv.png solr/server/solr-webapp/webapp/img/filetypes/xls.png solr/server/solr-webapp/webapp/img/filetypes/xml.png solr/server/solr-webapp/webapp/img/filetypes/xpi.png solr/server/solr-webapp/webapp/img/filetypes/xvid.png solr/server/solr-webapp/webapp/img/filetypes/zip.png solr/server/solr-webapp/webapp/img/ico/arrow-000-small.png solr/server/solr-webapp/webapp/img/ico/arrow-circle.png solr/server/solr-webapp/webapp/img/ico/arrow-switch.png solr/server/solr-webapp/webapp/img/ico/asterisk.png solr/server/solr-webapp/webapp/img/ico/battery.png solr/server/solr-webapp/webapp/img/ico/block-small.png solr/server/solr-webapp/webapp/img/ico/block.png solr/server/solr-webapp/webapp/img/ico/book-open-text.png solr/server/solr-webapp/webapp/img/ico/box.png solr/server/solr-webapp/webapp/img/ico/bug.png solr/server/solr-webapp/webapp/img/ico/chart.png solr/server/solr-webapp/webapp/img/ico/chevron-small-expand.png solr/server/solr-webapp/webapp/img/ico/chevron-small.png solr/server/solr-webapp/webapp/img/ico/clipboard-list.png solr/server/solr-webapp/webapp/img/ico/clipboard-paste-document-text.png solr/server/solr-webapp/webapp/img/ico/clipboard-paste.png solr/server/solr-webapp/webapp/img/ico/clock-select-remain.png solr/server/solr-webapp/webapp/img/ico/clock-select.png solr/server/solr-webapp/webapp/img/ico/construction.png solr/server/solr-webapp/webapp/img/ico/cross-0.png solr/server/solr-webapp/webapp/img/ico/cross-1.png solr/server/solr-webapp/webapp/img/ico/cross-button.png solr/server/solr-webapp/webapp/img/ico/cross.png solr/server/solr-webapp/webapp/img/ico/dashboard.png solr/server/solr-webapp/webapp/img/ico/database--plus.png solr/server/solr-webapp/webapp/img/ico/database.png solr/server/solr-webapp/webapp/img/ico/databases.png solr/server/solr-webapp/webapp/img/ico/disk-black.png solr/server/solr-webapp/webapp/img/ico/document-convert.png solr/server/solr-webapp/webapp/img/ico/document-import.png solr/server/solr-webapp/webapp/img/ico/document-list.png solr/server/solr-webapp/webapp/img/ico/document-text.png solr/server/solr-webapp/webapp/img/ico/documents-stack.png solr/server/solr-webapp/webapp/img/ico/download-cloud.png solr/server/solr-webapp/webapp/img/ico/drive-upload.png solr/server/solr-webapp/webapp/img/ico/exclamation-button.png solr/server/solr-webapp/webapp/img/ico/eye.png solr/server/solr-webapp/webapp/img/ico/folder-export.png solr/server/solr-webapp/webapp/img/ico/folder-tree.png solr/server/solr-webapp/webapp/img/ico/folder.png solr/server/solr-webapp/webapp/img/ico/funnel-small.png solr/server/solr-webapp/webapp/img/ico/funnel.png solr/server/solr-webapp/webapp/img/ico/gear.png solr/server/solr-webapp/webapp/img/ico/globe-network.png solr/server/solr-webapp/webapp/img/ico/globe.png solr/server/solr-webapp/webapp/img/ico/hammer-screwdriver.png solr/server/solr-webapp/webapp/img/ico/hammer.png solr/server/solr-webapp/webapp/img/ico/hand.png solr/server/solr-webapp/webapp/img/ico/highlighter-text.png solr/server/solr-webapp/webapp/img/ico/home.png solr/server/solr-webapp/webapp/img/ico/hourglass--exclamation.png solr/server/solr-webapp/webapp/img/ico/hourglass.png +solr/server/solr-webapp/webapp/img/ico/idea.png solr/server/solr-webapp/webapp/img/ico/inbox-document-text.png solr/server/solr-webapp/webapp/img/ico/information-button.png solr/server/solr-webapp/webapp/img/ico/information-small.png solr/server/solr-webapp/webapp/img/ico/information-white.png solr/server/solr-webapp/webapp/img/ico/information.png solr/server/solr-webapp/webapp/img/ico/jar.png solr/server/solr-webapp/webapp/img/ico/magnifier.png solr/server/solr-webapp/webapp/img/ico/mail.png solr/server/solr-webapp/webapp/img/ico/memory.png solr/server/solr-webapp/webapp/img/ico/minus-button.png solr/server/solr-webapp/webapp/img/ico/molecule.png solr/server/solr-webapp/webapp/img/ico/network-cloud.png solr/server/solr-webapp/webapp/img/ico/network-status-away.png solr/server/solr-webapp/webapp/img/ico/network-status-busy.png solr/server/solr-webapp/webapp/img/ico/network-status-offline.png solr/server/solr-webapp/webapp/img/ico/network-status.png solr/server/solr-webapp/webapp/img/ico/network.png solr/server/solr-webapp/webapp/img/ico/node-design.png solr/server/solr-webapp/webapp/img/ico/node-master.png solr/server/solr-webapp/webapp/img/ico/node-select.png solr/server/solr-webapp/webapp/img/ico/node-slave.png solr/server/solr-webapp/webapp/img/ico/node.png solr/server/solr-webapp/webapp/img/ico/pencil-small.png solr/server/solr-webapp/webapp/img/ico/pencil.png solr/server/solr-webapp/webapp/img/ico/plus-button.png solr/server/solr-webapp/webapp/img/ico/processor.png solr/server/solr-webapp/webapp/img/ico/prohibition.png solr/server/solr-webapp/webapp/img/ico/property.png solr/server/solr-webapp/webapp/img/ico/question-small-white.png solr/server/solr-webapp/webapp/img/ico/question-white.png solr/server/solr-webapp/webapp/img/ico/question.png solr/server/solr-webapp/webapp/img/ico/receipt-invoice.png solr/server/solr-webapp/webapp/img/ico/receipt.png +solr/server/solr-webapp/webapp/img/ico/run.png solr/server/solr-webapp/webapp/img/ico/script-code.png solr/server/solr-webapp/webapp/img/ico/server-cast.png solr/server/solr-webapp/webapp/img/ico/server.png solr/server/solr-webapp/webapp/img/ico/sitemap.png solr/server/solr-webapp/webapp/img/ico/slash.png solr/server/solr-webapp/webapp/img/ico/status-away.png solr/server/solr-webapp/webapp/img/ico/status-busy.png solr/server/solr-webapp/webapp/img/ico/status-offline.png solr/server/solr-webapp/webapp/img/ico/status.png solr/server/solr-webapp/webapp/img/ico/system-monitor--exclamation.png solr/server/solr-webapp/webapp/img/ico/system-monitor.png solr/server/solr-webapp/webapp/img/ico/table.png solr/server/solr-webapp/webapp/img/ico/terminal.png solr/server/solr-webapp/webapp/img/ico/tick-circle.png solr/server/solr-webapp/webapp/img/ico/tick-red.png solr/server/solr-webapp/webapp/img/ico/tick.png solr/server/solr-webapp/webapp/img/ico/toggle-small-expand.png solr/server/solr-webapp/webapp/img/ico/toggle-small.png solr/server/solr-webapp/webapp/img/ico/toolbox.png solr/server/solr-webapp/webapp/img/ico/ui-accordion.png solr/server/solr-webapp/webapp/img/ico/ui-address-bar.png solr/server/solr-webapp/webapp/img/ico/ui-check-box-uncheck.png solr/server/solr-webapp/webapp/img/ico/ui-check-box.png solr/server/solr-webapp/webapp/img/ico/ui-radio-button-uncheck.png solr/server/solr-webapp/webapp/img/ico/ui-radio-button.png solr/server/solr-webapp/webapp/img/ico/ui-text-field-select.png solr/server/solr-webapp/webapp/img/ico/users.png solr/server/solr-webapp/webapp/img/ico/wooden-box.png solr/server/solr-webapp/webapp/img/ico/zone.png solr/server/solr-webapp/webapp/img/loader-light.gif solr/server/solr-webapp/webapp/img/loader.gif solr/server/solr-webapp/webapp/img/lucene-ico.png solr/server/solr-webapp/webapp/img/solr-ico.png solr/server/solr-webapp/webapp/img/solr.svg solr/server/solr-webapp/webapp/img/tree.png solr/server/solr-webapp/webapp/index.html solr/server/solr-webapp/webapp/js/angular/app.js solr/server/solr-webapp/webapp/js/angular/controllers/analysis.js solr/server/solr-webapp/webapp/js/angular/controllers/cloud.js +solr/server/solr-webapp/webapp/js/angular/controllers/cluster-suggestions.js solr/server/solr-webapp/webapp/js/angular/controllers/collection-overview.js solr/server/solr-webapp/webapp/js/angular/controllers/collections.js solr/server/solr-webapp/webapp/js/angular/controllers/core-overview.js solr/server/solr-webapp/webapp/js/angular/controllers/cores.js solr/server/solr-webapp/webapp/js/angular/controllers/dataimport.js solr/server/solr-webapp/webapp/js/angular/controllers/documents.js solr/server/solr-webapp/webapp/js/angular/controllers/files.js solr/server/solr-webapp/webapp/js/angular/controllers/index.js solr/server/solr-webapp/webapp/js/angular/controllers/java-properties.js solr/server/solr-webapp/webapp/js/angular/controllers/logging.js solr/server/solr-webapp/webapp/js/angular/controllers/plugins.js solr/server/solr-webapp/webapp/js/angular/controllers/query.js solr/server/solr-webapp/webapp/js/angular/controllers/replication.js solr/server/solr-webapp/webapp/js/angular/controllers/schema.js solr/server/solr-webapp/webapp/js/angular/controllers/segments.js solr/server/solr-webapp/webapp/js/angular/controllers/stream.js solr/server/solr-webapp/webapp/js/angular/controllers/threads.js solr/server/solr-webapp/webapp/js/angular/services.js solr/server/solr-webapp/webapp/libs/angular-chosen.js solr/server/solr-webapp/webapp/libs/angular-cookies.js solr/server/solr-webapp/webapp/libs/angular-cookies.min.js solr/server/solr-webapp/webapp/libs/angular-resource.min.js solr/server/solr-webapp/webapp/libs/angular-route.js solr/server/solr-webapp/webapp/libs/angular-route.min.js solr/server/solr-webapp/webapp/libs/angular-sanitize.js solr/server/solr-webapp/webapp/libs/angular-sanitize.min.js solr/server/solr-webapp/webapp/libs/angular.js solr/server/solr-webapp/webapp/libs/angular.min.js solr/server/solr-webapp/webapp/libs/chosen.jquery.js solr/server/solr-webapp/webapp/libs/chosen.jquery.min.js solr/server/solr-webapp/webapp/libs/d3.js solr/server/solr-webapp/webapp/libs/highlight.js solr/server/solr-webapp/webapp/libs/jquery-1.7.2.min.js solr/server/solr-webapp/webapp/libs/jquery-2.1.3.min.js solr/server/solr-webapp/webapp/libs/jquery.jstree.js solr/server/solr-webapp/webapp/libs/ngtimeago.js solr/server/solr-webapp/webapp/partials/analysis.html solr/server/solr-webapp/webapp/partials/cloud.html +solr/server/solr-webapp/webapp/partials/cluster_suggestions.html solr/server/solr-webapp/webapp/partials/collection_overview.html solr/server/solr-webapp/webapp/partials/collections.html solr/server/solr-webapp/webapp/partials/core_overview.html solr/server/solr-webapp/webapp/partials/cores.html solr/server/solr-webapp/webapp/partials/dataimport.html solr/server/solr-webapp/webapp/partials/documents.html solr/server/solr-webapp/webapp/partials/files.html solr/server/solr-webapp/webapp/partials/index.html solr/server/solr-webapp/webapp/partials/java-properties.html solr/server/solr-webapp/webapp/partials/logging-levels.html solr/server/solr-webapp/webapp/partials/logging.html solr/server/solr-webapp/webapp/partials/plugins.html solr/server/solr-webapp/webapp/partials/query.html solr/server/solr-webapp/webapp/partials/replication.html solr/server/solr-webapp/webapp/partials/schema.html solr/server/solr-webapp/webapp/partials/segments.html solr/server/solr-webapp/webapp/partials/stream.html solr/server/solr-webapp/webapp/partials/threads.html solr/server/solr/README.txt solr/server/solr/configsets/_default/conf/lang/contractions_ca.txt solr/server/solr/configsets/_default/conf/lang/contractions_fr.txt solr/server/solr/configsets/_default/conf/lang/contractions_ga.txt solr/server/solr/configsets/_default/conf/lang/contractions_it.txt solr/server/solr/configsets/_default/conf/lang/hyphenations_ga.txt solr/server/solr/configsets/_default/conf/lang/stemdict_nl.txt solr/server/solr/configsets/_default/conf/lang/stoptags_ja.txt solr/server/solr/configsets/_default/conf/lang/stopwords_ar.txt solr/server/solr/configsets/_default/conf/lang/stopwords_bg.txt solr/server/solr/configsets/_default/conf/lang/stopwords_ca.txt solr/server/solr/configsets/_default/conf/lang/stopwords_cz.txt solr/server/solr/configsets/_default/conf/lang/stopwords_da.txt solr/server/solr/configsets/_default/conf/lang/stopwords_de.txt solr/server/solr/configsets/_default/conf/lang/stopwords_el.txt solr/server/solr/configsets/_default/conf/lang/stopwords_en.txt solr/server/solr/configsets/_default/conf/lang/stopwords_es.txt solr/server/solr/configsets/_default/conf/lang/stopwords_eu.txt solr/server/solr/configsets/_default/conf/lang/stopwords_fa.txt solr/server/solr/configsets/_default/conf/lang/stopwords_fi.txt solr/server/solr/configsets/_default/conf/lang/stopwords_fr.txt solr/server/solr/configsets/_default/conf/lang/stopwords_ga.txt solr/server/solr/configsets/_default/conf/lang/stopwords_gl.txt solr/server/solr/configsets/_default/conf/lang/stopwords_hi.txt solr/server/solr/configsets/_default/conf/lang/stopwords_hu.txt solr/server/solr/configsets/_default/conf/lang/stopwords_hy.txt solr/server/solr/configsets/_default/conf/lang/stopwords_id.txt solr/server/solr/configsets/_default/conf/lang/stopwords_it.txt solr/server/solr/configsets/_default/conf/lang/stopwords_ja.txt solr/server/solr/configsets/_default/conf/lang/stopwords_lv.txt solr/server/solr/configsets/_default/conf/lang/stopwords_nl.txt solr/server/solr/configsets/_default/conf/lang/stopwords_no.txt solr/server/solr/configsets/_default/conf/lang/stopwords_pt.txt solr/server/solr/configsets/_default/conf/lang/stopwords_ro.txt solr/server/solr/configsets/_default/conf/lang/stopwords_ru.txt solr/server/solr/configsets/_default/conf/lang/stopwords_sv.txt solr/server/solr/configsets/_default/conf/lang/stopwords_th.txt solr/server/solr/configsets/_default/conf/lang/stopwords_tr.txt solr/server/solr/configsets/_default/conf/lang/userdict_ja.txt solr/server/solr/configsets/_default/conf/managed-schema solr/server/solr/configsets/_default/conf/params.json solr/server/solr/configsets/_default/conf/protwords.txt solr/server/solr/configsets/_default/conf/solrconfig.xml solr/server/solr/configsets/_default/conf/stopwords.txt solr/server/solr/configsets/_default/conf/synonyms.txt solr/server/solr/configsets/sample_techproducts_configs/conf/_rest_managed.json solr/server/solr/configsets/sample_techproducts_configs/conf/_schema_analysis_stopwords_english.json solr/server/solr/configsets/sample_techproducts_configs/conf/_schema_analysis_synonyms_english.json -solr/server/solr/configsets/sample_techproducts_configs/conf/admin-extra.html -solr/server/solr/configsets/sample_techproducts_configs/conf/admin-extra.menu-bottom.html -solr/server/solr/configsets/sample_techproducts_configs/conf/admin-extra.menu-top.html solr/server/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/README.txt solr/server/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/kmeans-attributes.xml solr/server/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/lingo-attributes.xml solr/server/solr/configsets/sample_techproducts_configs/conf/clustering/carrot2/stc-attributes.xml solr/server/solr/configsets/sample_techproducts_configs/conf/currency.xml solr/server/solr/configsets/sample_techproducts_configs/conf/elevate.xml solr/server/solr/configsets/sample_techproducts_configs/conf/lang/contractions_ca.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/contractions_fr.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/contractions_ga.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/contractions_it.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/hyphenations_ga.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stemdict_nl.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stoptags_ja.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ar.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_bg.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ca.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ckb.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_cz.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_da.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_de.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_el.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_en.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_es.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_eu.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_fa.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_fi.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_fr.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ga.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_gl.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_hi.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_hu.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_hy.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_id.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_it.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ja.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_lv.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_nl.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_no.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_pt.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ro.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_ru.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_sv.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_th.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/stopwords_tr.txt solr/server/solr/configsets/sample_techproducts_configs/conf/lang/userdict_ja.txt solr/server/solr/configsets/sample_techproducts_configs/conf/managed-schema solr/server/solr/configsets/sample_techproducts_configs/conf/mapping-FoldToASCII.txt solr/server/solr/configsets/sample_techproducts_configs/conf/mapping-ISOLatin1Accent.txt solr/server/solr/configsets/sample_techproducts_configs/conf/params.json solr/server/solr/configsets/sample_techproducts_configs/conf/protwords.txt solr/server/solr/configsets/sample_techproducts_configs/conf/solrconfig.xml solr/server/solr/configsets/sample_techproducts_configs/conf/spellings.txt solr/server/solr/configsets/sample_techproducts_configs/conf/stopwords.txt solr/server/solr/configsets/sample_techproducts_configs/conf/synonyms.txt solr/server/solr/configsets/sample_techproducts_configs/conf/update-script.js solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/README.txt solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/VM_global_library.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/browse.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/cluster.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/cluster_results.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/debug.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/did_you_mean.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/error.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/facet_fields.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/facet_pivot.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/facet_queries.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/facet_ranges.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/facets.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/footer.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/head.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/header.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/hit.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/hit_grouped.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/hit_plain.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/join_doc.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/jquery.autocomplete.css solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/jquery.autocomplete.js solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/layout.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/main.css solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/mime_type_lists.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/pagination_bottom.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/pagination_top.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/product_doc.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/query.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/query_form.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/query_group.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/query_spatial.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/results_list.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/richtext_doc.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/suggest.vm solr/server/solr/configsets/sample_techproducts_configs/conf/velocity/tabs.vm solr/server/solr/configsets/sample_techproducts_configs/conf/xslt/example.xsl solr/server/solr/configsets/sample_techproducts_configs/conf/xslt/example_atom.xsl solr/server/solr/configsets/sample_techproducts_configs/conf/xslt/example_rss.xsl solr/server/solr/configsets/sample_techproducts_configs/conf/xslt/luke.xsl solr/server/solr/configsets/sample_techproducts_configs/conf/xslt/updateXml.xsl solr/server/solr/solr.xml solr/server/solr/zoo.cfg solr/server/start.jar @dir(solr,solr) /var/db/solr @dir(solr,solr) /var/log/solr