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-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to