0

I want to use ivy 2.2.0 jar instead of installing ivy on my machine because when anyone import my project from svn its giving errors for jars which I have added to Ivy library.

I added ivy.xml to build path through option add ivy library. how I can configure it through build.xml instead of add ivy library option..

pallavi
  • 735
  • 2
  • 10
  • 18

1 Answers1

1

You want to use Ivy without the ivy.jar file? This is not possible.

However, you can make it easier for your users. Ant can automatically download Ivy for you the first time it is used. For the following times, just add Ivy itself as a dependency of your project, so you can easily roll out updates of Ivy, for example.

For the bootstrapping (getting Ivy with plain Ant) see this answer to another SO question.

Community
  • 1
  • 1
Philipp Wendler
  • 11,184
  • 7
  • 52
  • 87