I'm using a script like this :

    <target name="install" depends="setup-ivy" description="Download a
module from ibiblio an install it on a local repository">
        <input message="Organisation" defaultvalue="org.apache"
addproperty="install.org"/>
        <input message="Module" addproperty="install.module"/>
        <input message="Version" addproperty="install.version"/>
        <property name="install.target.reposiroty" value="local"/>
        <property name="install.transtivity" value="true"/>
        <echo>install.target.reposiroty = ${install.target.reposiroty
}</echo>
        <echo>install.transtivity = ${install.transtivity}</echo>
        <ivy:install from="ibiblio" to="${install.target.reposiroty}"
                organisation="${install.org}" module="${install.module}"
revision="${install.version}"
                transitive="${install.transtivity}"
        />
    </target>


2007/11/6, jpyork <[EMAIL PROTECTED]>:
>
>
> I am trying to introduce Ivy to my ant scripts but I am not able to figure
> out how to do one thing.
> I am looking for the command to manually install jar into my local
> repository.  These jar files are not available for download from public
> repositories.  I would imagine that the command would be similar to mavens
> mvn install command.
>
> Thanks
>
>
> --
> View this message in context:
> http://www.nabble.com/Ivy-suggestions-help-needed-tf4759539.html#a13611102
> Sent from the ivy-dev mailing list archive at Nabble.com.
>
>


-- 
Gilles SCOKART

Reply via email to