You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2009/10/13 19:11:42 UTC

svn commit: r824844 - /lucene/solr/trunk/example/solr/conf/solrconfig.xml

Author: yonik
Date: Tue Oct 13 17:11:41 2009
New Revision: 824844

URL: http://svn.apache.org/viewvc?rev=824844&view=rev
Log:
fix nightly: be more flexible about solr-cell regex matching jar

Modified:
    lucene/solr/trunk/example/solr/conf/solrconfig.xml

Modified: lucene/solr/trunk/example/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/solrconfig.xml?rev=824844&r1=824843&r2=824844&view=diff
==============================================================================
--- lucene/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/example/solr/conf/solrconfig.xml Tue Oct 13 17:11:41 2009
@@ -51,7 +51,7 @@
        directory which completely match the regex (anchored on both ends)
        will be included.
     -->
-  <lib dir="../../dist/" regex="apache-solr-cell-(\d|\.)+-.*\.jar" />
+  <lib dir="../../dist/" regex="apache-solr-cell-.*\.jar" />
   <!-- If a dir option (with or without a regex) is used and nothing is found
        that matches, it will be ignored
     -->



Re: svn commit: r824844 - /lucene/solr/trunk/example/solr/conf/solrconfig.xml

Posted by Chris Hostetter <ho...@fucit.org>.
: fix nightly: be more flexible about solr-cell regex matching jar

...if we're going to change this, we should change it in all the example 
solrconfig.xml files to be consistent.  But perhaps instead we should 
change the nightly build to use a more informative version? like 
"1.4-dev-nightly" ?

FWIW: When i wrote the regex I specificly wanted it to require a digit so 
that it would exclude the src & docs jars (those are big jars, i didn't 
want them getting loaded by the JVM).

Looking at it now though, none of the configs would work on a formal 
release because they require a "-" after part of the version number....

damn.

I'll fix this.

: -  <lib dir="../../dist/" regex="apache-solr-cell-(\d|\.)+-.*\.jar" />
: +  <lib dir="../../dist/" regex="apache-solr-cell-.*\.jar" />
:    <!-- If a dir option (with or without a regex) is used and nothing is found
:         that matches, it will be ignored
:      -->



-Hoss