You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Tommaso Teofili (JIRA)" <ji...@apache.org> on 2013/01/17 13:12:22 UTC

[jira] [Created] (LUCENE-4692) Duplicated classpath in facet build file

Tommaso Teofili created LUCENE-4692:
---------------------------------------

             Summary: Duplicated classpath in facet build file
                 Key: LUCENE-4692
                 URL: https://issues.apache.org/jira/browse/LUCENE-4692
             Project: Lucene - Core
          Issue Type: Bug
          Components: modules/facet
    Affects Versions: 4.0
            Reporter: Tommaso Teofili
            Priority: Minor
             Fix For: 4.2, 5.0


Facet module's build.xml contains both
{code}
  <path id="classpath">
    <path refid="base.classpath" />
    <pathelement location="${build.dir}/classes/java" />
    <pathelement location="${build.dir}/classes/examples" />
  </path>
{code}

and

{code}
<path id="classpath">
    <!-- TODO, cut over tests to MockAnalyzer etc and nuke this dependency -->
    <pathelement path="${analyzers-common.jar}" />
    <path refid="base.classpath"/>
  </path>
{code}

which I think is wrong.
As, as far as I can see, only the latter is actually used (probably because of its position in the build file) therefore I think the first can be just removed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org