add some javadoc

git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@483983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Xavier Hanin 2005-06-16 11:31:33 +00:00
parent 2f1b256059
commit b94b9d116b
1 changed files with 9 additions and 0 deletions

View File

@ -67,6 +67,15 @@ import fr.jayasoft.ivy.xml.XmlModuleDescriptorUpdater;
import fr.jayasoft.ivy.xml.XmlReportParser;
/**
* Ivy is a free java based dependency manager.
*
* This class is the main class of Ivy, which offers mainly dependency resolution.
*
* Here is one typical usage:
* Ivy ivy = new Ivy();
* ivy.configure(new URL("ivyconf.xml"));
* ivy.resolve(new URL("ivy.xml"), null, new String[] {"*"}, null, null, true);
*
* @author x.hanin
*
*/