[ https://issues.apache.org/jira/browse/LUCENE-4601?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14035896#comment-14035896 ]
Steve Rowe commented on LUCENE-4601: ------------------------------------ Thanks Itamar, I've added {{ant ivy-bootstrap}} to the ine instructions on that wiki page. > 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 > Fix For: 4.1, 5.0 > > 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 was sent by Atlassian JIRA (v6.2#6252) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org