From 140e54bf102b6923ba489dddfa4ab7c03d9065bb Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Fri, 5 Sep 2014 00:06:48 +0200 Subject: Update lucene version to 4.10 --- .classpath | 14 +++++++------- build.moxie | 2 +- gitblit.iml | 42 +++++++++++++++++++++--------------------- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.classpath b/.classpath index 4ea2a16a..9364ea0f 100644 --- a/.classpath +++ b/.classpath @@ -20,13 +20,13 @@ - - - - - - - + + + + + + + diff --git a/build.moxie b/build.moxie index cf9037a0..ae220661 100644 --- a/build.moxie +++ b/build.moxie @@ -104,7 +104,7 @@ repositories: central, eclipse-snapshots, eclipse, gitblit properties: { jetty.version : 9.2.1.v20140609 wicket.version : 1.4.21 - lucene.version : 4.8.1 + lucene.version : 4.10.0 jgit.version : 3.4.1.201406201815-r groovy.version : 2.3.3 bouncycastle.version : 1.49 diff --git a/gitblit.iml b/gitblit.iml index 02095d97..e432f02b 100644 --- a/gitblit.iml +++ b/gitblit.iml @@ -179,79 +179,79 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + -- cgit v1.2.3 From 3a4470aa445213ae113d50e2118ade03bb45acc8 Mon Sep 17 00:00:00 2001 From: James Moger Date: Thu, 4 Sep 2014 19:49:09 -0400 Subject: Bump the index version and update the LuceneVersion --- src/main/java/com/gitblit/service/LuceneService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/gitblit/service/LuceneService.java b/src/main/java/com/gitblit/service/LuceneService.java index 482be5c6..3f7635f4 100644 --- a/src/main/java/com/gitblit/service/LuceneService.java +++ b/src/main/java/com/gitblit/service/LuceneService.java @@ -105,7 +105,7 @@ import com.gitblit.utils.StringUtils; public class LuceneService implements Runnable { - private static final int INDEX_VERSION = 5; + private static final int INDEX_VERSION = 6; private static final String FIELD_OBJECT_TYPE = "type"; private static final String FIELD_PATH = "path"; @@ -125,7 +125,7 @@ public class LuceneService implements Runnable { private static final String CONF_ALIAS = "aliases"; private static final String CONF_BRANCH = "branches"; - private static final Version LUCENE_VERSION = Version.LUCENE_46; + private static final Version LUCENE_VERSION = Version.LUCENE_4_10_0; private final Logger logger = LoggerFactory.getLogger(LuceneService.class); -- cgit v1.2.3