Lance Norskog created SOLR-3624:
-----------------------------------

             Summary: example/solr/collection1/conf/solrconfig.xml sample 
library declarations off-by-one
                 Key: SOLR-3624
                 URL: https://issues.apache.org/jira/browse/SOLR-3624
             Project: Solr
          Issue Type: Bug
          Components: Build
            Reporter: Lance Norskog
            Priority: Minor
             Fix For: 4.0, 5.0


In {{solr/example/solr/collection1/conf/solrconfig.xml}} this declaration: 
{code}
  <lib dir="../../dist/" regex="apache-solr-cell-\d.*\.jar" />
  <lib dir="../../contrib/extraction/lib" regex=".*\.jar" />
{code}
should be:
{code}
  <lib dir="../../../dist/" regex="apache-solr-cell-\d.*\.jar" />
  <lib dir="../../../contrib/extraction/lib" regex=".*\.jar" />
{code}

This problem happened when the example/solr became example/solr/collection1.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to