This is an automated email from the ASF dual-hosted git repository.
aldettinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new a968fa4 CAMEL-11893: Fixed lib dir WARNINGs
a968fa4 is described below
commit a968fa42a097eb640818bc15c105d5812a3ea695
Author: aldettinger <[email protected]>
AuthorDate: Tue Jun 26 21:50:41 2018 +0200
CAMEL-11893: Fixed lib dir WARNINGs
---
.../resources/solr/collection1/conf/solrconfig.xml | 47 ----------------------
1 file changed, 47 deletions(-)
diff --git
a/components/camel-solr/src/test/resources/solr/collection1/conf/solrconfig.xml
b/components/camel-solr/src/test/resources/solr/collection1/conf/solrconfig.xml
index c4707d5..68f8d80 100644
---
a/components/camel-solr/src/test/resources/solr/collection1/conf/solrconfig.xml
+++
b/components/camel-solr/src/test/resources/solr/collection1/conf/solrconfig.xml
@@ -38,53 +38,6 @@
-->
<luceneMatchVersion>7.2.1</luceneMatchVersion>
- <!-- <lib/> directives can be used to instruct Solr to load an Jars
- identified and use them to resolve any "plugins" specified in
- your solrconfig.xml or schema.xml (ie: Analyzers, Request
- Handlers, etc...).
-
- All directories and paths are resolved relative to the
- instanceDir.
-
- Please note that <lib/> directives are processed in the order
- that they appear in your solrconfig.xml file, and are "stacked"
- on top of each other when building a ClassLoader - so if you have
- plugin jars with dependencies on other jars, the "lower level"
- dependency jars should be loaded first.
-
- If a "./lib" directory exists in your instanceDir, all files
- found in it are included as if you had used the following
- syntax...
-
- <lib dir="./lib" />
- -->
-
- <!-- A 'dir' option by itself adds any files found in the directory
- to the classpath, this is useful for including all jars in a
- directory.
-
- When a 'regex' is specified in addition to a 'dir', only the
- files in that directory which completely match the regex
- (anchored on both ends) will be included.
-
- If a 'dir' option (with or without a regex) is used and nothing
- is found that matches, a warning will be logged.
-
- The examples below can be used to load some solr-contribs along
- with their external dependencies.
- -->
- <lib dir="../../../contrib/extraction/lib" regex=".*\.jar" />
- <lib dir="../../../dist/" regex="solr-cell-\d.*\.jar" />
-
- <lib dir="../../../contrib/clustering/lib/" regex=".*\.jar" />
- <lib dir="../../../dist/" regex="solr-clustering-\d.*\.jar" />
-
- <lib dir="../../../contrib/langid/lib/" regex=".*\.jar" />
- <lib dir="../../../dist/" regex="solr-langid-\d.*\.jar" />
-
- <lib dir="../../../contrib/velocity/lib" regex=".*\.jar" />
- <lib dir="../../../dist/" regex="solr-velocity-\d.*\.jar" />
-
<!-- an exact 'path' can be used instead of a 'dir' to specify a
specific jar file. This will cause a serious error to be logged
if it can't be loaded.