I thought ivy:info task would do the job by...
<ivy:info file="${local_ivy_file}"/>
<ivy:info organisation="${ivy.organisation}" module="${ivy.module}" revision="${ivy.revision}" property="check"/>
But even when the artifact does not exist on the repo, the properties of "check" (check.organisation, check.module, check.revision) always returns the same values as that of ivy.organisation, etc... when the expected values of "check" properties should be null (since they don't exist on repo)
Am I missing something?
Why this is needed:
I have a large set of third party jars to upload, but i do not have admin rights to overwrite (and should not overwrite) if file exists.
Doing
<ivy:publish overwrite="false"/>
will break the entire process whereas I need the task to continue cycle through the whole set of jars/ivy.xml.
Thanks