Hi I created a new directory and have the following ivy.xml and build.xml:
ivy.xml <ivy-module version="1.0"> <info organisation="jayasoft" module="my" /> <dependencies> <dependency org="apache" name="commons-lang" rev="2.0" /> </dependencies> </ivy-module> build.xml <project xmlns:ivy="antlib:fr.jayasoft.ivy.ant" name="my"> <target name="resolve"> <ivy:retrieve /> </target> </project> When run (> ant resolve), I got the following error: :::::::::::::::::::::::::::::::::::::::::::::: :: UNRESOLVED DEPENDENCIES :: :::::::::::::::::::::::::::::::::::::::::::::: :: [ apache | commons-lang | 2.0 ]: not found :::::::::::::::::::::::::::::::::::::::::::::: Do you have any idea of what could be the problem?
From the Maven repository (http://repo1.maven.org/maven2/), how do we
identify the appropriate attribute of "org", "name" and "rev" in ivy.xml? -- Newbie
