You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2017/01/03 14:10:28 UTC

lucene-solr:branch_6x: LUCENE-7612: Remove suggester dependency on misc

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x c40cd2df4 -> 77828f764


LUCENE-7612: Remove suggester dependency on misc


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/77828f76
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/77828f76
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/77828f76

Branch: refs/heads/branch_6x
Commit: 77828f764c84bbe97571c8679ab523163d2da0e5
Parents: c40cd2d
Author: Alan Woodward <ro...@apache.org>
Authored: Fri Dec 30 14:45:29 2016 +0000
Committer: Alan Woodward <ro...@apache.org>
Committed: Tue Jan 3 14:10:12 2017 +0000

----------------------------------------------------------------------
 dev-tools/idea/lucene/suggest/suggest.iml | 1 -
 lucene/CHANGES.txt                        | 3 +++
 lucene/suggest/build.xml                  | 6 ++----
 3 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/77828f76/dev-tools/idea/lucene/suggest/suggest.iml
----------------------------------------------------------------------
diff --git a/dev-tools/idea/lucene/suggest/suggest.iml b/dev-tools/idea/lucene/suggest/suggest.iml
index ef2b8ed..576ea8b 100644
--- a/dev-tools/idea/lucene/suggest/suggest.iml
+++ b/dev-tools/idea/lucene/suggest/suggest.iml
@@ -15,7 +15,6 @@
     <orderEntry type="module" scope="TEST" module-name="lucene-test-framework" />
     <orderEntry type="module" module-name="queries" />
     <orderEntry type="module" module-name="analysis-common" />
-    <orderEntry type="module" module-name="misc" />
     <orderEntry type="module" module-name="lucene-core" />
   </component>
 </module>

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/77828f76/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index d742e7c..9ffa879 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -85,6 +85,9 @@ Bug Fixes
 * LUCENE-7606: Normalization with CustomAnalyzer would only apply the last
   token filter. (Adrien Grand)
 
+* LUCENE-7612: Removed an unused dependency from the suggester to the misc
+  module. (Alan Woodward)
+
 Improvements
 
 * LUCENE-7532: Add back lost codec file format documentation

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/77828f76/lucene/suggest/build.xml
----------------------------------------------------------------------
diff --git a/lucene/suggest/build.xml b/lucene/suggest/build.xml
index 26b316b..5babe06 100644
--- a/lucene/suggest/build.xml
+++ b/lucene/suggest/build.xml
@@ -30,22 +30,20 @@
 
   <path id="classpath">
     <pathelement path="${analyzers-common.jar}"/>
-    <pathelement path="${misc.jar}"/>
     <pathelement path="${queries.jar}"/>
     <path refid="base.classpath"/>
   </path>
 
-  <target name="javadocs" depends="javadocs-queries,javadocs-misc,compile-core,check-javadocs-uptodate"
+  <target name="javadocs" depends="javadocs-queries,compile-core,check-javadocs-uptodate"
           unless="javadocs-uptodate-${name}">
     <invoke-module-javadoc>
       <links>
         <link href="../analyzers-common"/>
         <link href="../queries"/>
-        <link href="../misc"/>
       </links>
     </invoke-module-javadoc>
   </target>
 
-  <target name="compile-core" depends="jar-expressions, jar-misc, jar-analyzers-common, common.compile-core" />
+  <target name="compile-core" depends="jar-expressions, jar-analyzers-common, common.compile-core" />
 
 </project>