simplify classpath regex

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@826289 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2009-10-17 19:05:53 +00:00
parent 7aec4a8754
commit 16df0cfe16
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
--> -->
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError> <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" /> <lib dir="../lib" />
<!-- these jars are not inlcuded in the release because of their licenses, <!-- these jars are not inlcuded in the release because of their licenses,
they will be downlodded when 'ant example' is run they will be downlodded when 'ant example' is run

View File

@ -27,7 +27,7 @@
<abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError> <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
<lib dir="../../../../contrib/dataimporthandler/lib/" regex=".*jar$" /> <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> <indexDefaults>
<!-- Values here affect all index writers and act as a default unless overridden. --> <!-- Values here affect all index writers and act as a default unless overridden. -->

View File

@ -51,7 +51,7 @@
directory which completely match the regex (anchored on both ends) directory which completely match the regex (anchored on both ends)
will be included. 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 <!-- If a dir option (with or without a regex) is used and nothing is found
that matches, it will be ignored that matches, it will be ignored
--> -->