alex28
alex28

Reputation: 552

Setting up projects with IvyDE

Are there any good sample projects with IvyDE or tutorials on setting up projects with IvyDE in Eclipse?

Upvotes: 11

Views: 21796

Answers (3)

Aniket Thakur
Aniket Thakur

Reputation: 68975

  1. Add the plugin to Eclipse.
  2. Right click project and Create new ivy.xml file.
  3. Search your dependencies on the maven repo and add it to your ivy file.
  4. Right click ivy file add select add ivy library. It will automatically perform ivy resolve and add dependencies to you ivy library.

You can find detailed information with some screenshots in Installing and using Apache Ivy as dependency manager.

PS: Above link is to my personal blog that I write.

Upvotes: 18

rudrasiva86
rudrasiva86

Reputation: 583

I know this question is too old to answer. But this may help few developers like me. Refer this PDF document - ApacheIvyBeginners Guide. Its awesome, just of 30 pages.

Upvotes: 3

oers
oers

Reputation: 18704

The ivyde Documentation should help.

It has an installation guide.

Basically you just have to:

  1. Install the plugin
  2. Point the settings to your ivysettings.xml (if you have one)
  3. Write the ivy.xml for your project
  4. Add the IVY-Classpath-Container for your project

Upvotes: 9

Related Questions