Class Ivy14

java.lang.Object
org.apache.ivy.Ivy14

public class Ivy14 extends Object
This class can be used for easy migration from Ivy 1.4 API.

Indeed, Ivy 2.0 API has changed substantially, so it can take time to migrate existing code using Ivy 1.4 API to the new API. Using this class it's really easy: replace your instance of Ivy by an instance of this class.

For instance, where you were doing:

 Ivy ivy = new Ivy();
 
do instead:
 Ivy14 ivy = new Ivy14();
 
And that should be enough in most cases!