Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Jul 2021 19:48:48 GMT
From:      Matthias Fechner <mfechner@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: c9e677ca41e6 - main - textproc/apache-solr: Autogenerate PLIST
Message-ID:  <202107191948.16JJmm5R017200@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mfechner:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c9e677ca41e67958da362dfe8ea5c43b1b050506

commit c9e677ca41e67958da362dfe8ea5c43b1b050506
Author:     Matthias Fechner <mfechner@FreeBSD.org>
AuthorDate: 2021-07-19 19:48:26 +0000
Commit:     Matthias Fechner <mfechner@FreeBSD.org>
CommitDate: 2021-07-19 19:48:44 +0000

    textproc/apache-solr: Autogenerate PLIST
---
 textproc/apache-solr/Makefile         |   14 +-
 textproc/apache-solr/create-plist.php |   72 --
 textproc/apache-solr/pkg-plist        | 1768 ---------------------------------
 3 files changed, 9 insertions(+), 1845 deletions(-)

diff --git a/textproc/apache-solr/Makefile b/textproc/apache-solr/Makefile
index 574b0e15626a..964c1414b596 100644
--- a/textproc/apache-solr/Makefile
+++ b/textproc/apache-solr/Makefile
@@ -30,11 +30,12 @@ CPE_VENDOR=	apache
 
 OPTIONS_DEFINE=	JTS
 OPTIONS_SUB=	yes
-JTS_DESC=	Enable support for JTS Topology Suite
 
+JTS_DESC=	Enable support for JTS Topology Suite
 JTS_RUN_DEPENDS=	jts>0:math/jts
 
 do-install:
+	${FIND} ${WRKSRC} -name '*.orig' -delete
 	cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${CPE_PRODUCT}
 	${INSTALL_SCRIPT} ${WRKSRC}/bin/oom_solr.sh ${STAGEDIR}${PREFIX}/${CPE_PRODUCT}/bin
 	${INSTALL_SCRIPT} ${WRKSRC}/bin/post ${STAGEDIR}${PREFIX}/${CPE_PRODUCT}/bin
@@ -55,9 +56,12 @@ do-install:
 do-install-JTS-on:
 	${LN} -sf ${JAVALIBDIR}/jts-core.jar ${STAGEDIR}${PREFIX}/${CPE_PRODUCT}/server/solr-webapp/webapp/WEB-INF/lib/
 
-# execute this target to generate the pkg-plist
-my-generate-plist: patch
-	php create-plist.php ${WRKSRC} >pkg-plist
-	$(MAKE) clean
+post-install:
+	${FIND} -s ${STAGEDIR}${PREFIX}/${CPE_PRODUCT} -not -type d | ${SORT} | \
+		${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${TMPPLIST}
+	@${ECHO_CMD} "@dir(solr,solr) /var/db/solr" >> ${TMPPLIST}
+	@${ECHO_CMD} "@dir(solr,solr) /var/log/solr" >> ${TMPPLIST}
+	@${ECHO_CMD} "@sample etc/solr.in.sh.sample" >> ${TMPPLIST}
+	@${ECHO_CMD} "@sample(solr,solr) /var/db/solr/solr.xml.sample" >> ${TMPPLIST}
 
 .include <bsd.port.mk>
diff --git a/textproc/apache-solr/create-plist.php b/textproc/apache-solr/create-plist.php
deleted file mode 100644
index 729b78419b55..000000000000
--- a/textproc/apache-solr/create-plist.php
+++ /dev/null
@@ -1,72 +0,0 @@
-<?php
-
-if(empty($argv[1]))
-  die("please specify solr-worksrc\n");
-
-$strGitLabDir = $argv[1];
-
-if(!is_dir($strGitLabDir))
-  die("given path is not a dir: $strGitLabDir\n");
-
-if(!is_readable($strGitLabDir))
-  die("given path is not readable: $strGitLabDir\n");
-
-// remove last slash of path if given to easy
-// path handling later
-if(strrpos($strGitLabDir, '/') == (strlen($strGitLabDir) - 1))
-  $strGitLabDir = substr($strGitLabDir, 0, strlen($strGitLabDir) - 1);
-
-$objDir = new RecursiveDirectoryIterator($strGitLabDir);
-$objDir = new RecursiveIteratorIterator($objDir);
-
-$arrFiles = array();
-
-// iterate through complete given work-dir
-foreach($objDir AS $objFile) {
-
-  // skip dirs, we only want files
-  if(!$objFile->isFile())
-    continue;
-
-  // skip unwanted files
-  if(in_array($objFile->getExtension(),
-              array('orig', 'bak', 'gitkeep', 'gitignore')))
-     continue;
-
-  // skip lock file, it shoud be generated when GitLab is started
-  if('Gemfile.lock' === $objFile->getFilename())
-    continue;
-
-  // strip given dir - we just want the aim-dir
-  $intEndPosOfDir = strpos($objFile->getRealPath(), $strGitLabDir) + strlen($strGitLabDir);
-  $strFilePath    = substr($objFile->getRealPath(), $intEndPosOfDir);
-
-  // list of config files to ignore
-  $arrConfigFiles = array('/etc/solr.in.sh.sample',
-                          '/var/db/solr/solr.xml.sample');
-
-  // skip config files
-  if(in_array($strFilePath, $arrConfigFiles))
-    continue;
-
-  $arrFiles[] = "solr$strFilePath";
-
-}
-
-sort($arrFiles);
-
-// go through the files and print them
-foreach($arrFiles AS $strFile) {
-
-    print "$strFile\n";
-}
-
-// at least print static block of dirs and config files
-print "@dir(solr,solr) /var/db/solr
-@dir(solr,solr) /var/log/solr
-@sample etc/solr.in.sh.sample
-@sample(solr,solr) /var/db/solr/solr.xml.sample
-%%JTS%%solr/server/solr-webapp/webapp/WEB-INF/lib/jts-core.jar
-";
-print "\n";
-
diff --git a/textproc/apache-solr/pkg-plist b/textproc/apache-solr/pkg-plist
deleted file mode 100644
index 2ee44e0a5378..000000000000
--- a/textproc/apache-solr/pkg-plist
+++ /dev/null
@@ -1,1768 +0,0 @@
-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/postlogs
-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-62.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/morfologik-ukrainian-search-4.9.1.jar
-solr/contrib/analysis-extras/lib/opennlp-tools-1.9.2.jar
-solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-icu-8.9.0.jar
-solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-morfologik-8.9.0.jar
-solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-opennlp-8.9.0.jar
-solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-smartcn-8.9.0.jar
-solr/contrib/analysis-extras/lucene-libs/lucene-analyzers-stempel-8.9.0.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/SparseBitSet-1.2.jar
-solr/contrib/extraction/lib/apache-mime4j-core-0.8.3.jar
-solr/contrib/extraction/lib/apache-mime4j-dom-0.8.3.jar
-solr/contrib/extraction/lib/aspectjrt-1.8.0.jar
-solr/contrib/extraction/lib/bcmail-jdk15on-1.65.jar
-solr/contrib/extraction/lib/bcpkix-jdk15on-1.65.jar
-solr/contrib/extraction/lib/bcprov-jdk15on-1.65.jar
-solr/contrib/extraction/lib/boilerpipe-1.1.0.jar
-solr/contrib/extraction/lib/commons-collections4-4.4.jar
-solr/contrib/extraction/lib/commons-compress-1.20.jar
-solr/contrib/extraction/lib/commons-csv-1.8.jar
-solr/contrib/extraction/lib/curvesapi-1.06.jar
-solr/contrib/extraction/lib/dec-0.1.2.jar
-solr/contrib/extraction/lib/fontbox-2.0.19.jar
-solr/contrib/extraction/lib/icu4j-62.1.jar
-solr/contrib/extraction/lib/isoparser-1.9.41.2.jar
-solr/contrib/extraction/lib/jackcess-3.0.1.jar
-solr/contrib/extraction/lib/jackcess-encrypt-3.0.0.jar
-solr/contrib/extraction/lib/java-libpst-0.9.3.jar
-solr/contrib/extraction/lib/jdom2-2.0.6.jar
-solr/contrib/extraction/lib/jempbox-1.8.16.jar
-solr/contrib/extraction/lib/jmatio-1.5.jar
-solr/contrib/extraction/lib/juniversalchardet-1.0.3.jar
-solr/contrib/extraction/lib/metadata-extractor-2.13.0.jar
-solr/contrib/extraction/lib/parso-2.0.11.jar
-solr/contrib/extraction/lib/pdfbox-2.0.19.jar
-solr/contrib/extraction/lib/pdfbox-tools-2.0.19.jar
-solr/contrib/extraction/lib/poi-4.1.2.jar
-solr/contrib/extraction/lib/poi-ooxml-4.1.2.jar
-solr/contrib/extraction/lib/poi-ooxml-schemas-4.1.2.jar
-solr/contrib/extraction/lib/poi-scratchpad-4.1.2.jar
-solr/contrib/extraction/lib/rome-1.12.2.jar
-solr/contrib/extraction/lib/rome-utils-1.12.2.jar
-solr/contrib/extraction/lib/tagsoup-1.2.1.jar
-solr/contrib/extraction/lib/tika-core-1.24.1.jar
-solr/contrib/extraction/lib/tika-java7-1.24.1.jar
-solr/contrib/extraction/lib/tika-parsers-1.24.1.jar
-solr/contrib/extraction/lib/tika-xmp-1.24.1.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.12.0.jar
-solr/contrib/extraction/lib/xml-apis-1.4.01.jar
-solr/contrib/extraction/lib/xmlbeans-3.1.0.jar
-solr/contrib/extraction/lib/xmpcore-shaded-6.1.10.jar
-solr/contrib/extraction/lib/xz-1.8.jar
-solr/contrib/gcs-repository/lib/api-common-1.8.1.jar
-solr/contrib/gcs-repository/lib/error_prone_annotations-2.3.2.jar
-solr/contrib/gcs-repository/lib/gax-1.45.0.jar
-solr/contrib/gcs-repository/lib/gax-httpjson-0.62.0.jar
-solr/contrib/gcs-repository/lib/google-api-client-1.31.3.jar
-solr/contrib/gcs-repository/lib/google-api-services-storage-v1-rev20210127-1.31.0.jar
-solr/contrib/gcs-repository/lib/google-auth-library-credentials-0.15.0.jar
-solr/contrib/gcs-repository/lib/google-auth-library-oauth2-http-0.15.0.jar
-solr/contrib/gcs-repository/lib/google-cloud-core-1.77.0.jar
-solr/contrib/gcs-repository/lib/google-cloud-core-http-1.77.0.jar
-solr/contrib/gcs-repository/lib/google-cloud-nio-0.122.11.jar
-solr/contrib/gcs-repository/lib/google-cloud-storage-1.113.14.jar
-solr/contrib/gcs-repository/lib/google-http-client-1.39.0.jar
-solr/contrib/gcs-repository/lib/google-http-client-appengine-1.39.0.jar
-solr/contrib/gcs-repository/lib/google-http-client-jackson2-1.39.0.jar
-solr/contrib/gcs-repository/lib/google-oauth-client-1.29.2.jar
-solr/contrib/gcs-repository/lib/grpc-context-1.19.0.jar
-solr/contrib/gcs-repository/lib/gson-2.7.jar
-solr/contrib/gcs-repository/lib/j2objc-annotations-1.1.jar
-solr/contrib/gcs-repository/lib/jackson-core-2.11.2.jar
-solr/contrib/gcs-repository/lib/opencensus-api-0.21.0.jar
-solr/contrib/gcs-repository/lib/opencensus-contrib-http-util-0.21.0.jar
-solr/contrib/gcs-repository/lib/proto-google-common-protos-1.16.0.jar
-solr/contrib/gcs-repository/lib/proto-google-iam-v1-0.12.0.jar
-solr/contrib/gcs-repository/lib/protobuf-java-3.11.0.jar
-solr/contrib/gcs-repository/lib/protobuf-java-util-3.11.0.jar
-solr/contrib/gcs-repository/lib/threetenbp-1.3.3.jar
-solr/contrib/jaegertracer-configurator/README.txt
-solr/contrib/jaegertracer-configurator/lib/jaeger-core-1.1.0.jar
-solr/contrib/jaegertracer-configurator/lib/jaeger-thrift-1.1.0.jar
-solr/contrib/jaegertracer-configurator/lib/libthrift-0.13.0.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.9.2.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/solr-exporter-config.xml
-solr/contrib/prometheus-exporter/lib/argparse4j-0.8.1.jar
-solr/contrib/prometheus-exporter/lib/jackson-annotations-2.11.2.jar
-solr/contrib/prometheus-exporter/lib/jackson-core-2.11.2.jar
-solr/contrib/prometheus-exporter/lib/jackson-databind-2.11.2.jar
-solr/contrib/prometheus-exporter/lib/jackson-jq-0.0.8.jar
-solr/contrib/prometheus-exporter/lib/log4j-api-2.13.2.jar
-solr/contrib/prometheus-exporter/lib/log4j-core-2.13.2.jar
-solr/contrib/prometheus-exporter/lib/log4j-slf4j-impl-2.13.2.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-8.9.0.jar
-solr/contrib/velocity/lib/commons-lang3-3.10.jar
-solr/contrib/velocity/lib/velocity-engine-core-2.0.jar
-solr/contrib/velocity/lib/velocity-tools-generic-3.0.jar
-solr/contrib/velocity/lib/velocity-tools-view-3.0.jar
-solr/contrib/velocity/lib/velocity-tools-view-jsp-3.0.jar
-solr/dist/solr-analysis-extras-8.9.0.jar
-solr/dist/solr-analytics-8.9.0.jar
-solr/dist/solr-cell-8.9.0.jar
-solr/dist/solr-core-8.9.0.jar
-solr/dist/solr-dataimporthandler-8.9.0.jar
-solr/dist/solr-dataimporthandler-extras-8.9.0.jar
-solr/dist/solr-gcs-repository-8.9.0.jar
-solr/dist/solr-jaegertracer-configurator-8.9.0.jar
-solr/dist/solr-langid-8.9.0.jar
-solr/dist/solr-ltr-8.9.0.jar
-solr/dist/solr-prometheus-exporter-8.9.0.jar
-solr/dist/solr-solrj-8.9.0.jar
-solr/dist/solr-test-framework-8.9.0.jar
-solr/dist/solr-velocity-8.9.0.jar
-solr/dist/solrj-lib/commons-io-2.8.0.jar
-solr/dist/solrj-lib/commons-lang-2.6.jar
-solr/dist/solrj-lib/commons-math3-3.6.1.jar
-solr/dist/solrj-lib/http2-client-9.4.41.v20210516.jar
-solr/dist/solrj-lib/http2-common-9.4.41.v20210516.jar
-solr/dist/solrj-lib/http2-hpack-9.4.41.v20210516.jar
-solr/dist/solrj-lib/http2-http-client-transport-9.4.41.v20210516.jar
-solr/dist/solrj-lib/httpclient-4.5.12.jar
-solr/dist/solrj-lib/httpcore-4.4.13.jar
-solr/dist/solrj-lib/httpmime-4.5.12.jar
-solr/dist/solrj-lib/jcl-over-slf4j-1.7.24.jar
-solr/dist/solrj-lib/jetty-alpn-client-9.4.41.v20210516.jar
-solr/dist/solrj-lib/jetty-alpn-java-client-9.4.41.v20210516.jar
-solr/dist/solrj-lib/jetty-client-9.4.41.v20210516.jar
-solr/dist/solrj-lib/jetty-http-9.4.41.v20210516.jar
-solr/dist/solrj-lib/jetty-io-9.4.41.v20210516.jar
-solr/dist/solrj-lib/jetty-util-9.4.41.v20210516.jar
-solr/dist/solrj-lib/netty-buffer-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-codec-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-common-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-handler-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-resolver-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-transport-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-transport-native-epoll-4.1.50.Final.jar
-solr/dist/solrj-lib/netty-transport-native-unix-common-4.1.50.Final.jar
-solr/dist/solrj-lib/slf4j-api-1.7.24.jar
-solr/dist/solrj-lib/snappy-java-1.1.7.6.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.6.2.jar
-solr/dist/solrj-lib/zookeeper-jute-3.6.2.jar
-solr/dist/test-framework/README.txt
-solr/dist/test-framework/lib/ant-1.8.2.jar
-solr/dist/test-framework/lib/hamcrest-core-1.3.jar
-solr/dist/test-framework/lib/junit-4.13.1.jar
-solr/dist/test-framework/lib/junit4-ant-2.7.2.jar
-solr/dist/test-framework/lib/opentracing-mock-0.33.0.jar
-solr/dist/test-framework/lib/randomizedtesting-runner-2.7.2.jar
-solr/dist/test-framework/lucene-libs/lucene-test-framework-8.9.0.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/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/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/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/licenses/SparseBitSet-1.2.jar.sha1
-solr/licenses/SparseBitSet-LICENSE-ASL.txt
-solr/licenses/SparseBitSet-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/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.8.3.jar.sha1
-solr/licenses/apache-mime4j-core-LICENSE-ASL.txt
-solr/licenses/apache-mime4j-core-NOTICE.txt
-solr/licenses/apache-mime4j-dom-0.8.3.jar.sha1
-solr/licenses/apache-mime4j-dom-LICENSE-ASL.txt
-solr/licenses/apache-mime4j-dom-NOTICE.txt
-solr/licenses/api-common-1.8.1.jar.sha1
-solr/licenses/api-common-LICENSE-BSD.txt
-solr/licenses/api-common-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.2.jar.sha1
-solr/licenses/asciidoctor-ant-LICENSE-ASL.txt
-solr/licenses/asciidoctor-ant-NOTICE.txt
-solr/licenses/asm-8.0.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-8.0.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/auto-value-annotations-LICENSE-ASL.txt
-solr/licenses/avatica-core-1.13.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-jdk15on-1.65.jar.sha1
-solr/licenses/bcpkix-jdk15on-1.65.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-jdk15on-1.65.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.9.3.jar.sha1
-solr/licenses/byte-buddy-LICENSE-ASL.txt
-solr/licenses/byte-buddy-NOTICE.txt
-solr/licenses/caffeine-2.8.4.jar.sha1
-solr/licenses/caffeine-LICENSE-ASL.txt
-solr/licenses/caffeine-NOTICE.txt
-solr/licenses/calcite-core-1.18.0.jar.sha1
-solr/licenses/calcite-core-LICENSE-ASL.txt
-solr/licenses/calcite-core-NOTICE.txt
-solr/licenses/calcite-linq4j-1.18.0.jar.sha1
-solr/licenses/calcite-linq4j-LICENSE-ASL.txt
-solr/licenses/calcite-linq4j-NOTICE.txt
-solr/licenses/checker-compat-qual-LICENSE-MIT.txt
-solr/licenses/commons-cli-1.4.jar.sha1
-solr/licenses/commons-cli-LICENSE-ASL.txt
-solr/licenses/commons-cli-NOTICE.txt
-solr/licenses/commons-codec-1.13.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.4.jar.sha1
-solr/licenses/commons-collections4-LICENSE-ASL.txt
-solr/licenses/commons-collections4-NOTICE.txt
-solr/licenses/commons-compiler-3.0.9.jar.sha1
-solr/licenses/commons-compiler-LICENSE-BSD.txt
-solr/licenses/commons-compiler-NOTICE.txt
-solr/licenses/commons-compress-1.20.jar.sha1
-solr/licenses/commons-compress-LICENSE-ASL.txt
-solr/licenses/commons-compress-NOTICE.txt
-solr/licenses/commons-configuration-LICENSE-ASL.txt
-solr/licenses/commons-configuration-NOTICE.txt
-solr/licenses/commons-configuration2-2.1.1.jar.sha1
-solr/licenses/commons-configuration2-LICENSE-ASL.txt
-solr/licenses/commons-configuration2-NOTICE.txt
-solr/licenses/commons-csv-1.8.jar.sha1
-solr/licenses/commons-csv-LICENSE-ASL.txt
-solr/licenses/commons-csv-NOTICE.txt
-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-io-2.8.0.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.10.jar.sha1
-solr/licenses/commons-lang3-LICENSE-ASL.txt
-solr/licenses/commons-lang3-NOTICE.txt
-solr/licenses/commons-logging-1.1.3.jar.sha1
-solr/licenses/commons-logging-LICENSE-ASL.txt
-solr/licenses/commons-logging-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/commons-text-1.6.jar.sha1
-solr/licenses/commons-text-LICENSE-ASL.txt
-solr/licenses/commons-text-NOTICE.txt
-solr/licenses/curator-client-2.13.0.jar.sha1
-solr/licenses/curator-client-LICENSE-ASL.txt
-solr/licenses/curator-client-NOTICE.txt
-solr/licenses/curator-framework-2.13.0.jar.sha1
-solr/licenses/curator-framework-LICENSE-ASL.txt
-solr/licenses/curator-framework-NOTICE.txt
-solr/licenses/curator-recipes-2.13.0.jar.sha1
-solr/licenses/curator-recipes-LICENSE-ASL.txt
-solr/licenses/curator-recipes-NOTICE.txt
-solr/licenses/curvesapi-1.06.jar.sha1
-solr/licenses/curvesapi-LICENSE-BSD_LIKE.txt
-solr/licenses/curvesapi-NOTICE.txt
-solr/licenses/dec-0.1.2.jar.sha1
-solr/licenses/dec-LICENSE-MIT.txt
-solr/licenses/dec-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.2.jar.sha1
-solr/licenses/disruptor-LICENSE-ASL.txt
-solr/licenses/disruptor-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/error_prone_annotations-2.3.2.jar.sha1
-solr/licenses/error_prone_annotations-LICENSE-ASL.txt
-solr/licenses/error_prone_annotations-NOTICE.txt
-solr/licenses/failureaccess-LICENSE-ASL.txt
-solr/licenses/fontbox-2.0.19.jar.sha1
-solr/licenses/fontbox-LICENSE-ASL.txt
-solr/licenses/fontbox-NOTICE.txt
-solr/licenses/gax-1.45.0.jar.sha1
-solr/licenses/gax-LICENSE-BSD.txt
-solr/licenses/gax-NOTICE.txt
-solr/licenses/gax-httpjson-0.62.0.jar.sha1
-solr/licenses/gax-httpjson-LICENSE-BSD.txt
-solr/licenses/gax-httpjson-NOTICE.txt
-solr/licenses/gimap-1.5.1.jar.sha1
-solr/licenses/gimap-LICENSE-CDDL.txt
-solr/licenses/google-api-client-1.31.3.jar.sha1
-solr/licenses/google-api-client-LICENSE-ASL.txt
-solr/licenses/google-api-client-NOTICE.txt
-solr/licenses/google-api-services-storage-LICENSE-ASL.txt
-solr/licenses/google-api-services-storage-v1-rev20210127-1.31.0.jar.sha1
-solr/licenses/google-api-services-storage-v1-rev20210127-LICENSE-ASL.txt
-solr/licenses/google-api-services-storage-v1-rev20210127-NOTICE.txt
-solr/licenses/google-auth-library-credentials-0.15.0.jar.sha1
-solr/licenses/google-auth-library-credentials-LICENSE-BSD.txt
-solr/licenses/google-auth-library-credentials-NOTICE.txt
-solr/licenses/google-auth-library-oauth2-http-0.15.0.jar.sha1
-solr/licenses/google-auth-library-oauth2-http-LICENSE-BSD.txt
-solr/licenses/google-auth-library-oauth2-http-NOTICE.txt
-solr/licenses/google-cloud-core-1.77.0.jar.sha1
-solr/licenses/google-cloud-core-LICENSE-ASL.txt
-solr/licenses/google-cloud-core-NOTICE.txt
-solr/licenses/google-cloud-core-http-1.77.0.jar.sha1
-solr/licenses/google-cloud-core-http-LICENSE-ASL.txt
-solr/licenses/google-cloud-core-http-NOTICE.txt
-solr/licenses/google-cloud-nio-0.122.11.jar.sha1
-solr/licenses/google-cloud-nio-LICENSE-ASL.txt
-solr/licenses/google-cloud-nio-NOTICE.txt
-solr/licenses/google-cloud-storage-1.113.14.jar.sha1
-solr/licenses/google-cloud-storage-LICENSE-ASL.txt
-solr/licenses/google-cloud-storage-NOTICE.txt
-solr/licenses/google-http-client-1.39.0.jar.sha1
-solr/licenses/google-http-client-LICENSE-ASL.txt
-solr/licenses/google-http-client-NOTICE.txt
-solr/licenses/google-http-client-apache-v2-LICENSE-ASL.txt
-solr/licenses/google-http-client-appengine-1.39.0.jar.sha1
-solr/licenses/google-http-client-appengine-LICENSE-ASL.txt
-solr/licenses/google-http-client-appengine-NOTICE.txt
-solr/licenses/google-http-client-jackson2-1.39.0.jar.sha1
-solr/licenses/google-http-client-jackson2-LICENSE-ASL.txt
-solr/licenses/google-http-client-jackson2-NOTICE.txt
-solr/licenses/google-oauth-client-1.29.2.jar.sha1
-solr/licenses/google-oauth-client-LICENSE-ASL.txt
-solr/licenses/google-oauth-client-NOTICE.txt
-solr/licenses/grpc-context-1.19.0.jar.sha1
-solr/licenses/grpc-context-LICENSE-ASL.txt
-solr/licenses/grpc-context-NOTICE.txt
-solr/licenses/gson-2.7.jar.sha1
-solr/licenses/gson-LICENSE-ASL.txt
-solr/licenses/gson-NOTICE.txt
-solr/licenses/guava-25.1-jre.jar.sha1
-solr/licenses/guava-LICENSE-ASL.txt
-solr/licenses/guava-NOTICE.txt
-solr/licenses/hadoop-annotations-3.2.0.jar.sha1
-solr/licenses/hadoop-annotations-LICENSE-ASL.txt
-solr/licenses/hadoop-annotations-NOTICE.txt
-solr/licenses/hadoop-auth-3.2.0.jar.sha1
-solr/licenses/hadoop-auth-LICENSE-ASL.txt
-solr/licenses/hadoop-auth-NOTICE.txt
-solr/licenses/hadoop-common-3.2.0-tests.jar.sha1
-solr/licenses/hadoop-common-3.2.0.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-3.2.0-tests.jar.sha1
-solr/licenses/hadoop-hdfs-3.2.0.jar.sha1
-solr/licenses/hadoop-hdfs-LICENSE-ASL.txt
-solr/licenses/hadoop-hdfs-NOTICE.txt
-solr/licenses/hadoop-hdfs-client-3.2.0.jar.sha1
-solr/licenses/hadoop-hdfs-client-LICENSE-ASL.txt
-solr/licenses/hadoop-hdfs-client-NOTICE.txt
-solr/licenses/hadoop-hdfs-tests-LICENSE-ASL.txt
-solr/licenses/hadoop-hdfs-tests-NOTICE.txt
-solr/licenses/hadoop-minicluster-3.2.0.jar.sha1
-solr/licenses/hadoop-minicluster-LICENSE-ASL.txt
-solr/licenses/hadoop-minicluster-NOTICE.txt
-solr/licenses/hadoop-minikdc-3.2.0.jar.sha1
-solr/licenses/hadoop-minikdc-LICENSE-ASL.txt
-solr/licenses/hadoop-minikdc-NOTICE.txt
-solr/licenses/hamcrest-core-1.3.jar.sha1
-solr/licenses/hamcrest-core-LICENSE-BSD.txt
-solr/licenses/hamcrest-core-NOTICE.txt
-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-core4-4.1.0-incubating.jar.sha1
-solr/licenses/htrace-core4-LICENSE-ASL.txt
-solr/licenses/htrace-core4-NOTICE.txt
-solr/licenses/http2-client-9.4.41.v20210516.jar.sha1
-solr/licenses/http2-client-LICENSE-ASL.txt
-solr/licenses/http2-client-NOTICE.txt
-solr/licenses/http2-common-9.4.41.v20210516.jar.sha1
-solr/licenses/http2-common-LICENSE-ASL.txt
-solr/licenses/http2-common-NOTICE.txt
-solr/licenses/http2-hpack-9.4.41.v20210516.jar.sha1
-solr/licenses/http2-hpack-LICENSE-ASL.txt
-solr/licenses/http2-hpack-NOTICE.txt
-solr/licenses/http2-http-client-transport-9.4.41.v20210516.jar.sha1
-solr/licenses/http2-http-client-transport-LICENSE-ASL.txt
-solr/licenses/http2-http-client-transport-NOTICE.txt
-solr/licenses/http2-server-9.4.41.v20210516.jar.sha1
-solr/licenses/http2-server-LICENSE-ASL.txt
-solr/licenses/http2-server-NOTICE.txt
-solr/licenses/httpclient-4.5.12.jar.sha1
-solr/licenses/httpclient-LICENSE-ASL.txt
-solr/licenses/httpclient-NOTICE.txt
-solr/licenses/httpcore-4.4.13.jar.sha1
-solr/licenses/httpcore-LICENSE-ASL.txt
-solr/licenses/httpcore-NOTICE.txt
-solr/licenses/httpmime-4.5.12.jar.sha1
-solr/licenses/httpmime-LICENSE-ASL.txt
-solr/licenses/httpmime-NOTICE.txt
-solr/licenses/icu4j-62.1.jar.sha1
-solr/licenses/icu4j-LICENSE-BSD_LIKE.txt
-solr/licenses/icu4j-NOTICE.txt
-solr/licenses/isoparser-1.9.41.2.jar.sha1
-solr/licenses/isoparser-LICENSE-ASL.txt
-solr/licenses/isoparser-NOTICE.txt
-solr/licenses/j2objc-annotations-1.1.jar.sha1
-solr/licenses/j2objc-annotations-LICENSE-ASL.txt
-solr/licenses/j2objc-annotations-NOTICE.txt
-solr/licenses/jackcess-3.0.1.jar.sha1
-solr/licenses/jackcess-LICENSE-ASL.txt
-solr/licenses/jackcess-NOTICE.txt
-solr/licenses/jackcess-encrypt-3.0.0.jar.sha1
-solr/licenses/jackcess-encrypt-LICENSE-ASL.txt
-solr/licenses/jackcess-encrypt-NOTICE.txt
-solr/licenses/jackson-annotations-2.11.2.jar.sha1
-solr/licenses/jackson-annotations-LICENSE-ASL.txt
-solr/licenses/jackson-annotations-NOTICE.txt
-solr/licenses/jackson-core-2.11.2.jar.sha1
-solr/licenses/jackson-core-LICENSE-ASL.txt
-solr/licenses/jackson-core-NOTICE.txt
-solr/licenses/jackson-core-asl-LICENSE-ASL.txt
-solr/licenses/jackson-core-asl-NOTICE.txt
-solr/licenses/jackson-databind-2.11.2.jar.sha1
-solr/licenses/jackson-databind-LICENSE-ASL.txt
-solr/licenses/jackson-databind-NOTICE.txt
-solr/licenses/jackson-dataformat-smile-2.11.2.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-LICENSE-ASL.txt
-solr/licenses/jackson-mapper-asl-NOTICE.txt
-solr/licenses/jaeger-core-1.1.0.jar.sha1
-solr/licenses/jaeger-core-LICENSE-ASL.txt
-solr/licenses/jaeger-core-NOTICE.txt
-solr/licenses/jaeger-thrift-1.1.0.jar.sha1
-solr/licenses/jaeger-thrift-LICENSE-ASL.txt
-solr/licenses/jaeger-thrift-NOTICE.txt
-solr/licenses/janino-3.0.9.jar.sha1
-solr/licenses/janino-LICENSE-BSD.txt
-solr/licenses/janino-NOTICE.txt
-solr/licenses/java-libpst-0.9.3.jar.sha1
-solr/licenses/java-libpst-LICENSE-ASL.txt
-solr/licenses/java-libpst-NOTICE.txt
-solr/licenses/java-semver-0.9.0.jar.sha1
-solr/licenses/java-semver-LICENSE-MIT.txt
-solr/licenses/javax.inject-LICENSE-ASL.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.24.jar.sha1
-solr/licenses/jcl-over-slf4j-LICENSE-MIT.txt
-solr/licenses/jcl-over-slf4j-NOTICE.txt
-solr/licenses/jdom2-2.0.6.jar.sha1
-solr/licenses/jdom2-LICENSE-BSD_LIKE.txt
-solr/licenses/jdom2-NOTICE.txt
-solr/licenses/jempbox-1.8.16.jar.sha1
-solr/licenses/jempbox-LICENSE-ASL.txt
-solr/licenses/jempbox-NOTICE.txt
-solr/licenses/jersey-core-1.19.jar.sha1
-solr/licenses/jersey-core-LICENSE-CDDL.txt
-solr/licenses/jersey-server-1.19.jar.sha1
-solr/licenses/jersey-server-LICENSE-CDDL.txt
-solr/licenses/jersey-servlet-1.19.jar.sha1
-solr/licenses/jersey-servlet-LICENSE-CDDL.txt
-solr/licenses/jetty-LICENSE-ASL.txt
-solr/licenses/jetty-NOTICE.txt
-solr/licenses/jetty-alpn-client-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-alpn-java-client-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-alpn-java-server-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-alpn-server-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-client-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-continuation-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-deploy-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-http-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-io-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-jmx-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-rewrite-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-security-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-server-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-servlet-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-servlets-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-util-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-webapp-9.4.41.v20210516.jar.sha1
-solr/licenses/jetty-xml-9.4.41.v20210516.jar.sha1
-solr/licenses/jmatio-1.5.jar.sha1
-solr/licenses/jmatio-LICENSE-BSD.txt
-solr/licenses/jmatio-NOTICE.txt
-solr/licenses/jose4j-0.6.5.jar.sha1
-solr/licenses/jose4j-LICENSE-ASL.txt
-solr/licenses/jose4j-NOTICE.txt
-solr/licenses/json-path-2.4.0.jar.sha1
-solr/licenses/json-path-LICENSE-ASL.txt
-solr/licenses/json-path-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.12.1.jar.sha1
-solr/licenses/jsoup-LICENSE-MIT.txt
-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.13.1.jar.sha1
*** 917 LINES SKIPPED ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107191948.16JJmm5R017200>