Eclipse's Ant interation
Most Eclipse distribution includes a plugin to launch ant build files. The provided Ant is a standard distribution of Ant and so it doesn't include Ivy. But you probably want to use Ivy targets within the Eclipse's Ant.
Configure Ant classpath
For now IvyDE doesn't contribute to the Ant classpath of the Eclipse plugin, so you will have to do it manually.In the global preference page of the Ant runtime, click on Add External JARs...
Run Ivy targets
Create an Ant build file and just declare the Ivy targets with:<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" />And don't forgot to declare the namespace xmlns:ivy="antlib:org.apache.ivy.ant".
Then you will be able to have completion on Ivy tasks:
Printer Friendly