Hi,
I have following definition in ivy.xml
<dependency org="southbeach" name="ego" rev="4.3.1" conf="properties->asterik" >
<artifact name="ego" type="conf" ext="conf" conf="properties->asterik"/>
</dependency>
I have files with either extension conf or properties which i need at runtime, in ivysettings.xml, i have following:
<filesystem name="privateFSa">
<artifact pattern="${localRepositoryLocation}/[artifact].[ext]" />
</filesystem>
It always tries to look for ego.jar instead of ego.conf. can please somebody shed light on this? am i doing something wrong or ivy just supports tar,zip,gz, jar and not properties or conf files?
I did workaround for now in ivysettings.xml
<filesystem name="privateFSa">
<artifact pattern="${localRepositoryLocation}/[artifact].conf" />
</filesystem>
but this doesnt looks good to hardcode conf there.
Thanks,
Almas