[ 
https://issues.apache.org/jira/browse/LUCENE-4601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13527763#comment-13527763
 ] 

Dawid Weiss commented on LUCENE-4601:
-------------------------------------

Nice, didn't know about it either.
                
> ivy availability check isn't quite right
> ----------------------------------------
>
>                 Key: LUCENE-4601
>                 URL: https://issues.apache.org/jira/browse/LUCENE-4601
>             Project: Lucene - Core
>          Issue Type: Bug
>          Components: general/build
>            Reporter: Robert Muir
>         Attachments: LUCENE-4601.patch
>
>
> remove ivy from your .ant/lib but load it up on a build file like so:
> You have to lie to lucene's build, overriding ivy.available, because for some 
> reason the detection is wrong and will tell you ivy is not available, when it 
> actually is.
> I tried changing the detector to use available classname=some.ivy.class and 
> this didnt work either... so I don't actually know what the correct fix is.
> {noformat}
> <project name="test" default="test" basedir=".">
>   <path id="ivy.lib.path">
>     <fileset dir="/Users/rmuir" includes="ivy-2.2.0.jar" />
>   </path>
>   <taskdef resource="org/apache/ivy/ant/antlib.xml" 
> uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" />
>   <target name="test">
>     <subant target="test" inheritAll="false" inheritRefs="false" 
> failonerror="true">
>       <fileset dir="lucene-trunk/lucene" includes="build.xml"/>
>       <!-- lie -->
>       <property name="ivy.available" value="true"/>
>     </subant>
>   </target>
> </project>
> {noformat}

--
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