Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting up projects with IvyDE

Tags:

eclipse

ivy

ivyde

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

like image 267
alex28 Avatar asked Nov 14 '11 23:11

alex28


3 Answers

  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.

like image 114
Aniket Thakur Avatar answered Oct 02 '22 16:10

Aniket Thakur


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.

like image 23
rudrasiva86 Avatar answered Oct 02 '22 16:10

rudrasiva86


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
like image 32
oers Avatar answered Oct 02 '22 15:10

oers