Author: jacopoc
Date: Tue Dec 31 08:13:35 2013 New Revision: 1554384 URL: http://svn.apache.org/r1554384 Log: Upgrade to the latest Lucene release 4.6.0 Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.6.0.jar (with props) ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.6.0.jar (with props) ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.6.0.jar (with props) Removed: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.5.1.jar ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.5.1.jar ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.5.1.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=1554384&r1=1554383&r2=1554384&view=diff ============================================================================== --- ofbiz/trunk/.classpath (original) +++ ofbiz/trunk/.classpath Tue Dec 31 08:13:35 2013 @@ -154,9 +154,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.5.1.jar"/> - <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-core-4.5.1.jar"/> - <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-queryparser-4.5.1.jar"/> + <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-analyzers-common-4.6.0.jar"/> + <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-core-4.6.0.jar"/> + <classpathentry kind="lib" path="specialpurpose/lucene/lib/lucene-queryparser-4.6.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=1554384&r1=1554383&r2=1554384&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/LICENSE (original) +++ ofbiz/trunk/specialpurpose/LICENSE Tue Dec 31 08:13:35 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.5.1.jar -specialpurpose/lucene/lib/lucene-core-4.5.1.jar -specialpurpose/lucene/lib/lucene-queryparser-4.5.1.jar +specialpurpose/lucene/lib/lucene-analyzers-common-4.6.0.jar +specialpurpose/lucene/lib/lucene-core-4.6.0.jar +specialpurpose/lucene/lib/lucene-queryparser-4.6.0.jar ========================================================================= Apache License Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.6.0.jar URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.6.0.jar?rev=1554384&view=auto ============================================================================== Binary file - no diff available. Propchange: ofbiz/trunk/specialpurpose/lucene/lib/lucene-analyzers-common-4.6.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.6.0.jar URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.6.0.jar?rev=1554384&view=auto ============================================================================== Binary file - no diff available. Propchange: ofbiz/trunk/specialpurpose/lucene/lib/lucene-core-4.6.0.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.6.0.jar URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.6.0.jar?rev=1554384&view=auto ============================================================================== Binary file - no diff available. Propchange: ofbiz/trunk/specialpurpose/lucene/lib/lucene-queryparser-4.6.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=1554384&r1=1554383&r2=1554384&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 Tue Dec 31 08:13:35 2013 @@ -42,7 +42,7 @@ public class SearchWorker { public static final String module = SearchWorker.class.getName(); - public static final Version LUCENE_VERSION = Version.LUCENE_45; + public static final Version LUCENE_VERSION = Version.LUCENE_46; public static void indexContentTree(LocalDispatcher dispatcher, Delegator delegator, String siteId) throws Exception { GenericValue content = delegator.makeValue("Content", UtilMisc.toMap("contentId", siteId)); |
Free forum by Nabble | Edit this page |