Author: yonik
Date: Sat Oct 17 19:05:53 2009
New Revision: 826289
URL: http://svn.apache.org/viewvc?rev=826289&view=rev
Log:
simplify classpath regex
Modified:
lucene/solr/trunk/contrib/clustering/example/conf/solrconfig.xml
lucene/solr/trunk/example/example-DIH/solr/mail/conf/solrconfig.xml
lucene/solr/trunk/example/solr/conf/solrconfig.xml
Modified: lucene/solr/trunk/contrib/clustering/example/conf/solrconfig.xml
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/contrib/clustering/example/conf/solrconfig.xml?rev=826289&r1=826288&r2=826289&view=diff
==============================================================================
--- lucene/solr/trunk/contrib/clustering/example/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/contrib/clustering/example/conf/solrconfig.xml Sat Oct 17
19:05:53 2009
@@ -26,7 +26,7 @@
-->
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
- <lib dir="../../../dist/" regex="apache-solr-clustering-(nightly|\d).*\.jar"
/>
+ <lib dir="../../../dist/" regex="apache-solr-clustering-\d.*\.jar" />
<lib dir="../lib" />
<!-- these jars are not inlcuded in the release because of their licenses,
they will be downlodded when 'ant example' is run
Modified: lucene/solr/trunk/example/example-DIH/solr/mail/conf/solrconfig.xml
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/example/example-DIH/solr/mail/conf/solrconfig.xml?rev=826289&r1=826288&r2=826289&view=diff
==============================================================================
--- lucene/solr/trunk/example/example-DIH/solr/mail/conf/solrconfig.xml
(original)
+++ lucene/solr/trunk/example/example-DIH/solr/mail/conf/solrconfig.xml Sat Oct
17 19:05:53 2009
@@ -27,7 +27,7 @@
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
<lib dir="../../../../contrib/dataimporthandler/lib/" regex=".*jar$" />
- <lib dir="../../../../dist/"
regex="apache-solr-dataimporthandler-extras-(nightly|\d).*jar" />
+ <lib dir="../../../../dist/"
regex="apache-solr-dataimporthandler-extras-\d.*\.jar" />
<indexDefaults>
<!-- Values here affect all index writers and act as a default unless
overridden. -->
Modified: lucene/solr/trunk/example/solr/conf/solrconfig.xml
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/solrconfig.xml?rev=826289&r1=826288&r2=826289&view=diff
==============================================================================
--- lucene/solr/trunk/example/solr/conf/solrconfig.xml (original)
+++ lucene/solr/trunk/example/solr/conf/solrconfig.xml Sat Oct 17 19:05:53 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-(nightly|\d).*\.jar" />
+ <lib dir="../../dist/" regex="apache-solr-cell-\d.*\.jar" />
<!-- If a dir option (with or without a regex) is used and nothing is found
that matches, it will be ignored
-->