You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2016/04/11 10:12:22 UTC

[2/2] lucene-solr:master: LUCENE-7196 - added missing misc dependency

LUCENE-7196 - added missing misc dependency


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

Branch: refs/heads/master
Commit: 273d586be410a14e58c20bad596b5790349d03c2
Parents: 112078e
Author: Tommaso Teofili <to...@apache.org>
Authored: Mon Apr 11 10:03:37 2016 +0200
Committer: Tommaso Teofili <to...@apache.org>
Committed: Mon Apr 11 10:03:37 2016 +0200

----------------------------------------------------------------------
 lucene/classification/build.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/273d586b/lucene/classification/build.xml
----------------------------------------------------------------------
diff --git a/lucene/classification/build.xml b/lucene/classification/build.xml
index fd15239..c56d481 100644
--- a/lucene/classification/build.xml
+++ b/lucene/classification/build.xml
@@ -28,6 +28,7 @@
     <path refid="base.classpath"/>
     <pathelement path="${queries.jar}"/>
     <pathelement path="${grouping.jar}"/>
+    <pathelement path="${misc.jar}"/>
   </path>
 
   <path id="test.classpath">
@@ -36,16 +37,17 @@
     <path refid="test.base.classpath"/>
   </path>
 
-  <target name="compile-core" depends="jar-grouping,jar-queries,jar-analyzers-common,common.compile-core" />
+  <target name="compile-core" depends="jar-misc,jar-grouping,jar-queries,jar-analyzers-common,common.compile-core" />
 
   <target name="jar-core" depends="common.jar-core" />
 
-  <target name="javadocs" depends="javadocs-grouping,javadocs-misc,compile-core,check-javadocs-uptodate"
+  <target name="javadocs" depends="javadocs-misc,javadocs-grouping,javadocs-misc,compile-core,check-javadocs-uptodate"
           unless="javadocs-uptodate-${name}">
     <invoke-module-javadoc>
       <links>
         <link href="../queries"/>
         <link href="../group"/>
+        <link href="../misc"/>
       </links>
     </invoke-module-javadoc>
   </target>