Author: jacopoc
Date: Sat Oct 12 05:17:29 2013 New Revision: 1531504 URL: http://svn.apache.org/r1531504 Log: Updated the "lucene" specialpurpose component to the latest version of Lucene (4.5). Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.5.0.jar (with props) ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.5.0.jar (with props) ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.5.0.jar (with props) Removed: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.4.0.jar ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.4.0.jar ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.4.0.jar Modified: ofbiz/trunk/.classpath ofbiz/trunk/specialpurpose/LICENSE ofbiz/trunk/specialpurpose/lucene/src/org/ofbiz/content/search/SearchWorker.java Modified: ofbiz/trunk/.classpath URL: http://svn.apache.org/viewvc/ofbiz/trunk/.classpath?rev=1531504&r1=1531503&r2=1531504&view=diff ============================================================================== --- ofbiz/trunk/.classpath (original) +++ ofbiz/trunk/.classpath Sat Oct 12 05:17:29 2013 @@ -158,9 +158,9 @@ <classpathentry kind="lib" path="specialpurpose/ebaystore/lib/ebaycalls.jar"/> <classpathentry kind="lib" path="specialpurpose/ebaystore/lib/ebaysdkcore.jar"/> <classpathentry kind="lib" path="specialpurpose/ebaystore/lib/helper.jar"/> - <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-analyzers-common-4.4.0.jar"/> - <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-core-4.4.0.jar"/> - <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-queryparser-4.4.0.jar"/> + <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-analyzers-common-4.5.0.jar"/> + <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-core-4.5.0.jar"/> + <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-queryparser-4.5.0.jar"/> <classpathentry excluding="org/ofbiz/accounting/thirdparty/cybersource/**|org/ofbiz/accounting/thirdparty/verisign/**|org/ofbiz/accounting/thirdparty/worldpay/**|org/ofbiz/accounting/thirdparty/paypal/PayPalServices.java|org/ofbiz/accounting/thirdparty/orbital/**|org/ofbiz/accounting/thirdparty/securepay/**|org/ofbiz/accounting/thirdparty/ideal/**" kind="src" path="applications/accounting/src"/> <classpathentry excluding="org/ofbiz/content/openoffice/|org/ofbiz/content/report/" kind="src" path="applications/content/src"/> <classpathentry kind="src" path="applications/manufacturing/src"/> Modified: ofbiz/trunk/specialpurpose/LICENSE URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/LICENSE?rev=1531504&r1=1531503&r2=1531504&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/LICENSE (original) +++ ofbiz/trunk/specialpurpose/LICENSE Sat Oct 12 05:17:29 2013 @@ -16,9 +16,9 @@ specialpurpose/cmssite/template/docbook/ specialpurpose/cmssite/template/docbook/extensions/xalan27.jar specialpurpose/cmssite/template/docbook/extensions/webhelpindexer.jar specialpurpose/googlecheckout/lib/checkout-sdk-0.8.8.jar -specialpurpose/lucene/lib/lucene-analyzers-common-4.4.0.jar -specialpurpose/lucene/lib/lucene-core-4.4.0.jar -specialpurpose/lucene/lib/lucene-queryparser-4.4.0.jar +specialpurpose/lucene/lib/lucene-analyzers-common-4.5.0.jar +specialpurpose/lucene/lib/lucene-core-4.5.0.jar +specialpurpose/lucene/lib/lucene-queryparser-4.5.0.jar ========================================================================= Apache License Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.5.0.jar URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.5.0.jar?rev=1531504&view=auto ============================================================================== Binary file - no diff available. Propchange: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.5.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.5.0.jar URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.5.0.jar?rev=1531504&view=auto ============================================================================== Binary file - no diff available. Propchange: ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.5.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.5.0.jar URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.5.0.jar?rev=1531504&view=auto ============================================================================== Binary file - no diff available. Propchange: ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.5.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Modified: ofbiz/trunk/specialpurpose/lucene/src/org/ofbiz/content/search/SearchWorker.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/src/org/ofbiz/content/search/SearchWorker.java?rev=1531504&r1=1531503&r2=1531504&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/lucene/src/org/ofbiz/content/search/SearchWorker.java (original) +++ ofbiz/trunk/specialpurpose/lucene/src/org/ofbiz/content/search/SearchWorker.java Sat Oct 12 05:17:29 2013 @@ -57,7 +57,7 @@ public class SearchWorker { public static final String module = SearchWorker.class.getName(); - public static final Version LUCENE_VERSION = Version.LUCENE_44; + public static final Version LUCENE_VERSION = Version.LUCENE_45; public static Map<String, Object> indexTree(LocalDispatcher dispatcher, Delegator delegator, String siteId, Map<String, Object> context) throws Exception { GenericValue content = delegator.makeValue("Content", UtilMisc.toMap("contentId", siteId)); |
Free forum by Nabble | Edit this page |