mirror of https://github.com/apache/lucene.git
SOLR-5647: fix lib paths in example-schemaless
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1571076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
67bf89f7aa
commit
f473a11126
|
@ -86,6 +86,9 @@ New Features
|
|||
Bug Fixes
|
||||
----------------------
|
||||
|
||||
* SOLR-5647: The lib paths in example-schemaless will now load correctly.
|
||||
(Paul Westin via Shawn Heisey)
|
||||
|
||||
Other Changes
|
||||
---------------------
|
||||
|
||||
|
|
|
@ -72,17 +72,17 @@
|
|||
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/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/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/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" />
|
||||
<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
|
||||
|
|
Loading…
Reference in New Issue